एक बाइट सरणी सेट करें -
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