缓冲区 SetByte C# 示例
SetByte() 方法将指定的值分配到指定数组中特定位置的一个字节。
首先,设置一个数组 −
int[] arr = { 3, 4, 12 };
现在,使用 SetByte() 来分配值 −
Buffer.SetByte(arr, 3, 20);
以下是完整的代码 −
示例
using System; using System.Text; public class Demo { public static void Main() { int[] arr = { 3, 4, 12 }; Console.WriteLine("Initial Array..."); // loop through the byte array for (int i = 0; i < Buffer.ByteLength(arr); i++) { Console.WriteLine(Buffer.GetByte(arr, i)); } Buffer.SetByte(arr, 3, 20); Console.WriteLine("New Array..."); // loop through the new byte array for (int i = 0; i < Buffer.ByteLength(arr); i++) { Console.WriteLine(Buffer.GetByte(arr, i)); } } }
输出
Initial Array... 3 0 0 0 4 0 0 0 12 0 0 0 New Array... 3 0 0 20 4 0 0 0 12 0 0 0
广告