C# 中的 Buffer GetByte 示例
在 C# 中使用 GetByte() 方法读取各个字节 -
设置一个数组 -
int[] arr = { 3, 4, 12 };
现在,使用 Buffer.GetByte() 显示数组元素并读取各个字节 -
for (int i = 0; i < Buffer.ByteLength(arr); i++) { Console.WriteLine(Buffer.GetByte(arr, i)); }
以下为代码 -
示例
using System; using System.Text; public class Demo { public static void Main() { int[] arr = { 3, 4, 12 }; // loop through the byte array for (int i = 0; i < Buffer.ByteLength(arr); i++) { Console.WriteLine(Buffer.GetByte(arr, i)); } } }
输出
3 0 0 0 4 0 0 0 12 0 0 0
广告