您好,登錄后才能下訂單哦!
這篇文章主要講解了“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進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。