标签:bytes code 问题 convert cep void oms new color
/// <summary> /// 解决伪随机问题 /// </summary> public static void Random() { int t = 0; for (int i = 0; i < 10; i++) { byte[] bytes = new byte[4]; System.Security.Cryptography.RNGCryptoServiceProvider rng = new System.Security.Cryptography.RNGCryptoServiceProvider(); rng.GetBytes(bytes); t = BitConverter.ToInt32(bytes, 0); Random rnd = new Random(t); Console.WriteLine(rnd.Next(0, 10)); } }
标签:bytes code 问题 convert cep void oms new color
原文地址:https://www.cnblogs.com/yuanzijian-ruiec/p/9782594.html