System.Security.Cryptography.RandomNumberGeneratorImplementation.GetBytes C# (CSharp) Method

GetBytes() public method

public GetBytes ( byte data ) : void
data byte
return void
        public override void GetBytes(byte[] data)
        {
            if (data == null) throw new ArgumentNullException(nameof(data));

            GetBytesInternal(data, 0, data.Length);
        }

Same methods

RandomNumberGeneratorImplementation::GetBytes ( byte pbBuffer, int count ) : void
RandomNumberGeneratorImplementation::GetBytes ( byte data, int offset, int count ) : void
RandomNumberGeneratorImplementation