System.Security.Cryptography.RandomNumberGeneratorImplementation.GetBytes C# (CSharp) 메소드

GetBytes() 공개 메소드

public GetBytes ( byte data ) : void
data byte
리턴 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