在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
1. Buffer.ByteLength:计算基元类型数组累计有多少字节组成。该方法结果等于"基元类型字节长度 * 数组长度" var bytes = new byte[] { 1, 2, 3 }; var shorts = new short[] { 1, 2, 3 }; var ints = new int[] { 1, 2, 3 }; Console.WriteLine(Buffer.ByteLength(bytes)); // 1 byte * 3 elements = 3 Console.WriteLine(Buffer.ByteLength(shorts)); // 2 byte * 3 elements = 6 Console.WriteLine(Buffer.ByteLength(ints)); // 4 byte * 3 elements = 12 2. Buffer.GetByte:获取数组内存中字节指定索引处的值。public static byte GetByte(Array array, int index) var ints = new int[] { 0x04030201, 0x0d0c0b0a }; var b = Buffer.GetByte(ints, 2); // 0x03 解析: (1) 首先将数组按元素索引序号大小作为高低位组合成一个 "大整数"。
3. Buffer.SetByte: 设置数组内存字节指定索引处的值。public static void SetByte(Array array, int index, byte value) var ints = new int[] { 0x04030201, 0x0d0c0b0a }; Buffer.SetByte(ints, 2, 0xff); 操作前 : 0d0c0b0a 04030201
结果 : new int[] { 0x04ff0201, 0x0d0c0b0a }; 4. Buffer.BlockCopy:将指定数目的字节从起始于特定偏移量的源数组复制到起始于特定偏移量的目标数组。public static void BlockCopy(Array src, int srcOffset, Array dst, int dstOffset, int count)
例一:arr的数组中字节0-16的值复制到字节12-28:(int占4个字节byte ) int[] arr = { 2, 4, 6, 8, 10, 12, 14, 16, 18, 20 }; Buffer.BlockCopy(arr, 0 * 4, arr, 3 * 4, 4 * 4); foreach (var e in arr) { Console.WriteLine(e);//2,4,6,2,4,6,8,16,18,20 } 例二: var bytes = new byte[] { 0x0a, 0x0b, 0x0c, 0x0d}; var ints = new int[] { 0x00000001, 0x00000002 }; Buffer.BlockCopy(bytes, 1, ints, 2, 2); bytes 组合结果 : 0d 0c 0b 0a
|
请发表评论