天天看點

[.NET] 一個擷取随機數的新方式

private Random GetRandomSeed()
        {
            byte[] bytes = new byte[4];
            RNGCryptoServiceProvider rng = new RNGCryptoServiceProvider();
            rng.GetBytes(bytes);
            return new Random(BitConverter.ToInt32(bytes, 0));
        }
      

  

備注:RNGCryptoServiceProvider

This type implements the IDisposable interface. When you have finished using the type, you should dispose of it either directly or indirectly. To dispose of the type directly, call its Dispose method in a 

try

/

catch

 block. To dispose of it indirectly, use a language construct such as 

using

 (in C#) or 

Using

 (in Visual Basic). For more information, see the "Using an Object that Implements IDisposable" section in the IDisposable interface topic.

注意:上述代碼沒有dispose 

傳回導讀目錄,閱讀更多随筆

分割線,以下為部落格簽名:

軟體臭蟲情未了

  • 編碼一分鐘
  • 測試十年功

随筆如有錯誤或不恰當之處、為希望不誤導他人,望大俠們給予批評指正。