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

โปรแกรม C# นับจำนวนไบต์ในอาร์เรย์


ตั้งค่าอาร์เรย์ไบต์ −

byte[] b = { 5, 9, 19, 23, 29, 35, 55, 78 };

ในการนับจำนวนไบต์ −

Buffer.ByteLength(b)

ต่อไปนี้เป็นรหัส −

ตัวอย่าง

using System;
class Program {
   static void Main() {
      byte[] b = { 5, 9, 19, 23, 29, 35, 55, 78 };
      int len = Buffer.ByteLength(b);
      for (int i = 0; i < len; i++) {
         Console.WriteLine(b[i]);
      }
      Console.WriteLine("Length of byte array = "+len);
   }
}

ผลลัพธ์

5
9
19
23
29
35
55
78
Length of byte array = 8