摘要: BitConverter 类进行字节转换——MSDN byte[] dd = BitConverter.GetBytes(49490); // 转换出来的是:低位在前,高位在后,也就是 ABCD Console.WriteLine(BitConverter.ToInt32(dd, 0)); dd = 阅读全文
posted @ 2022-11-26 09:23 double64 阅读(2021) 评论(0) 推荐(0)