2011年2月16日星期三

轉帖:【摘录】Random快速产生相同随机数的原因及解


public int GetRandSeed()2         {3             byte[] bytes = new byte[8];4             System.Security.Cryptography.RNGCryptoServiceProvider rng = new System.Security.Cryptography.RNGCryptoServiceProvider();5             rng.GetBytes(bytes);6             return BitConverter.ToInt32(bytes, 0);7         }

沒有留言:

發佈留言