c#生成随机数示例分享
c#生成随机数示例分享
发布时间:2016-12-28 来源:查字典编辑
摘要:复制代码代码如下:///构造随机数种子staticintGetRandomSeed(){byte[]bytes=newbyte[4];Sys...

复制代码 代码如下:

/// 构造随机数 种子

static int GetRandomSeed()

{

byte[] bytes = new byte[4];

System.Security.Cryptography.RNGCryptoServiceProvider rng = new System.Security.Cryptography.RNGCryptoServiceProvider();

rng.GetBytes(bytes);

return BitConverter.ToInt32(bytes, 0);

}

/// 生成随机 数

static int rnd()

{

Random ran = new Random(GetRandomSeed());

int cnt = ran.Next(0,59);

return cnt;

}

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新C#教程学习
热门C#教程学习
编程开发子分类