Accord.ThreadSafeRandom.NextBytes C# (CSharp) 메소드

NextBytes() 공개 메소드

Fills the elements of a specified array of bytes with random numbers.
See Random.NextBytes(byte[]) for more information.
public NextBytes ( byte buffer ) : void
buffer byte An array of bytes to contain random numbers.
리턴 void
        public override void NextBytes(byte[] buffer)
        {
            lock (sync)
                base.NextBytes(buffer);
        }