Computer >> Máy Tính >  >> Lập trình >> C#

Chương trình C # để đếm số byte trong một mảng

Đặt một mảng byte -

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

Để đếm số byte -

Buffer.ByteLength(b)

Sau đây là mã -

Ví dụ

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);
   }
}

Đầu ra

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