首页 > 编程 > C# > 正文

C# 生成随机数的代码

2020-01-24 02:07:07
字体:
来源:转载
供稿:网友
/// 构造随机数 种子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#有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表