摘要: byte[] bytes = { 1,3 }; short s = BitConverter.ToInt16(bytes,0); Console.WriteLine(s); 从低位到高位填充: 0000 0003 0000 0001 3*2^8+1=769; byte[] bytes = { 0x2 阅读全文
posted @ 2025-03-09 10:26 JohnYang819 阅读(138) 评论(0) 推荐(0)