একটি বাইট অ্যারে সেট করুন −
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