Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

วิธี Random.NextBytes () ใน C #


วิธีการ Random.NextBytes() ใน C# ใช้เพื่อเติมองค์ประกอบของอาร์เรย์ไบต์ที่ระบุด้วยตัวเลขสุ่ม

ไวยากรณ์

ไวยากรณ์มีดังนี้ −

public virtual void NextBytes (byte[] buffer);

เหนือบัฟเฟอร์คืออาร์เรย์ของไบต์

ตัวอย่าง

เรามาดูตัวอย่างกัน −

using System;
public class Demo {
   public static void Main(){
      Random r = new Random();
      Random r2 = new Random();
      Random r3 = new Random();
      Byte[] arr = new Byte[5];
      r3.NextBytes(arr);
      Console.WriteLine("Random numbers.....");
      for (int i = 1; i <= 5; i++)
         Console.WriteLine(r.Next());
      Console.WriteLine("\nRandom numbers from 1 to 10.....");
      for (int i = 1; i <= 5; i++)
         Console.WriteLine(r2.Next(10));
      Console.WriteLine("\nRandom numbers in the byte array...");
      for (int i = 0; i < arr.GetUpperBound(0); i++)
         Console.WriteLine(arr[i]);
   }
}

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

Random numbers.....
2081486546
329484380
1639318640
1499756340
2122408387
Random numbers from 1 to 10.....
9
1
7
6
9
Random numbers in the byte array...
210
92
112
52

ตัวอย่าง

เรามาดูตัวอย่างอื่นกัน −

using System;
public class Demo {
   public static void Main(){
      Random r = new Random();
      Byte[] arr = new Byte[2];
      r.NextBytes(arr);
      Console.WriteLine("Random numbers in the byte array...");
      for (int i = 0; i < 2; i++)
         Console.WriteLine(arr[i]);
   }
}

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

Random numbers in the byte array...
173
11