C# 生成随机数的代码

2021-07-22 00:12

阅读:549

标签: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#里面给PPT文档添加注释的实现代码
技术分享图片
C# 中的var关键字详细介绍
技术分享图片
C#实现Winform版计算器
技术分享图片
C#操作IIS方法集合

技术分享图片
C#简单实现子窗体向父窗体传值的方法
技术分享图片
C#中实现判断某个类是否实现了某个接口
技术分享图片
C#解决汉诺塔问题DEMO
技术分享图片
C#调用执行外部程序的实现方法

C# 生成随机数的代码

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

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


评论


亲,登录后才可以留言!