码迷,mamicode.com
首页 > Windows程序 > 详细

C# 生成随机数的代码

时间:2017-12-14 03:45:21      阅读:234      评论:0      收藏:0      [点我收藏+]

标签:span   http   操作   clear   parent   back   str   tools   poi   

/// 构造随机数 种子
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# 生成随机数的代码

本文地址:  http://www.paobuke.com/develop/c-develop/pbk23093.html






相关内容

C# 生成随机数的代码

标签:span   http   操作   clear   parent   back   str   tools   poi   

原文地址:http://www.cnblogs.com/paobuke/p/8035658.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!