这篇文章主要讲解了“C#怎么使用System.Buffer以字节数组Byte[]操作基元类型数据”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“C#怎么使用System.Buffer以字节数组Byte[]操作基元类型数据”吧!
该方法结果等于"基元类型字节长度 * 数组长度"
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
public static byte GetByte(Array array, int index)
var ints = new int[] { 0x04030201, 0x0d0c0b0a }; var b = Buffer.GetByte(ints, 2); // 0x03
解析:
(1) 首先将数组按元素索引序号大小作为高低位组合成一个 "大整数"。
组合结果 : 0d0c0b0a 04030201
(2) index 表示从低位开始的字节序号。右边以 0 开始,index 2 自然是 0x03。
public static void SetByte(Array array, int index, byte value)
var ints = new int[] { 0x04030201, 0x0d0c0b0a }; Buffer.SetByte(ints, 2, 0xff);
操作前 : 0d0c0b0a 04030201
操作后 : 0d0c0b0a 04ff0201
结果 : new int[] { 0x04ff0201, 0x0d0c0b0a };
public static void BlockCopy(Array src, int srcOffset, Array dst, int dstOffset, int count)
src:源缓冲区。
srcOffset:src 的字节偏移量。
dst:目标缓冲区。
dstOffset:dst 的字节偏移量。
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
ints 组合结果 : 00000002 00000001
(1) 从 src 位置 1 开始提取 2 个字节,从由往左,那么应该是 "0c 0b"。
(2) 写入 dst 位置 2,那么结果应该是 "00000002 0c0b0001"。
(3) ints = { 0x0c0b0001, 0x00000002 },符合程序运行结果。
感谢各位的阅读,以上就是“C#怎么使用System.Buffer以字节数组Byte[]操作基元类型数据”的内容了,经过本文的学习后,相信大家对C#怎么使用System.Buffer以字节数组Byte[]操作基元类型数据这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是亿速云,小编将为大家推送更多相关知识点的文章,欢迎关注!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。