c#生成随机数种子,即便是并发也生成不同

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

//并发随机数种子
public int Seed()
    {
        byte[] bytes = new byte[4];
        System.Security.Cryptography.RNGCryptoServiceProvider rng = new System.Security.Cryptography.RNGCryptoServiceProvider();
        rng.GetBytes(bytes);
        return System.Math.Abs(BitConverter.ToInt32(bytes, 0));
    }


转载于:https://my.oschina.net/raddleoj/blog/369621

你可能感兴趣的:(c#生成随机数种子,即便是并发也生成不同)