Mono.Math.BigInteger.ThreadSafeRandomNumberGenerator.GetBytes C# (CSharp) Method

GetBytes() public method

public GetBytes ( byte data ) : void
data byte
return void
                       public override void GetBytes (byte[] data)
                       {
                               lock (locker)
                                       rng.GetBytes (data);
                       }
BigInteger.ThreadSafeRandomNumberGenerator