当前位置: 编程技术>.net/c#/asp.net
C# Guid.NewGuid获得随机数
来源: 互联网 发布时间:2014-10-18
本文导语: 代码如下:static int GetRandomNumber(int min, int max) { int rtn = 0; Random r = new Random(); byte[] buffer = Guid.NewGuid().ToByteArray(); int iSeed = BitConverter.ToInt32(buffer, 0); ...