c#生成随机数示例分享

前端技术 2023/09/03 C#

复制代码 代码如下:

/// 构造随机数 种子
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;
 }

本文地址:https://www.stayed.cn/item/6489

转载请注明出处。

本站部分内容来源于网络,如侵犯到您的权益,请 联系我

我的博客

人生若只如初见,何事秋风悲画扇。