다음을 통해 공유


Random.NextBytes 메서드

지정된 바이트 배열의 요소를 난수로 채웁니다.

네임스페이스: System
어셈블리: mscorlib(mscorlib.dll)

구문

‘선언
Public Overridable Sub NextBytes ( _
    buffer As Byte() _
)
‘사용 방법
Dim instance As Random
Dim buffer As Byte()

instance.NextBytes(buffer)
public virtual void NextBytes (
    byte[] buffer
)
public:
virtual void NextBytes (
    array<unsigned char>^ buffer
)
public void NextBytes (
    byte[] buffer
)
public function NextBytes (
    buffer : byte[]
)

매개 변수

  • buffer
    난수를 포함하는 바이트 배열입니다.

예외

예외 형식 조건

ArgumentNullException

buffer가 Null 참조(Visual Basic의 경우 Nothing)인 경우

설명

바이트 배열의 각 요소는 0보다 크거나 같고 MaxValue보다 작거나 같은 난수로 설정됩니다.

예를 들어, 임의로 암호를 만들기에 적합한 암호화 보안 난수를 생성하려면 RNGCryptoServiceProvider.GetBytes와 같은 메서드를 사용합니다.

예제

Dim rnd As New Random()
Dim b(10) As Byte
rnd.NextBytes(b)
Console.WriteLine("The Random bytes are: ")
Dim i As Integer
For i = 0 To 9
    Console.Write(i)
    Console.Write(":")
    Console.WriteLine(b(i))
Next i
Random rnd = new Random();
Byte[] b = new Byte[10];
rnd.NextBytes(b);
Console.WriteLine("The Random bytes are: ");
for (int i = 0; i < 10; i++) {
    Console.Write(i);  
    Console.Write(":");
    Console.WriteLine(b[i]);
}
   Random^ rnd = gcnew Random;
   array<unsigned char>^b = gcnew array<unsigned char>(10);
   rnd->NextBytes( b );
   Console::WriteLine( "The Random bytes are: " );
   for ( int i = 0; i < 10; i++ )
   {
      Console::Write( i );
      Console::Write( ":" );
      Console::WriteLine( b[ i ] );

   }
}

/*
This code produces the following output.

myQ is not synchronized.
mySyncdQ is synchronized.
*/
Random rnd = new Random();
ubyte b[] = new ubyte[10];
rnd.NextBytes(b);
Console.WriteLine("The Random bytes are: ");
for (int i = 0; i < 10; i++) {
    Console.Write(i);
    Console.Write(":");
    Console.WriteLine(b[i]);
}

플랫폼

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

.NET Framework에서 모든 플래폼의 모든 버전을 지원하지는 않습니다. 지원되는 버전의 목록은 시스템 요구 사항을 참조하십시오.

버전 정보

.NET Framework

2.0, 1.1, 1.0에서 지원

.NET Compact Framework

2.0, 1.0에서 지원

참고 항목

참조

Random 클래스
Random 멤버
System 네임스페이스
Byte 구조체