我试图在C#中将一个4字节数组转换为ulong.我正在使用这段代码:
atomSize = BitConverter.ToUInt32(buffer,0);
byte [4]包含:
0 0 0 32
但是,字节是Big-Endian.有没有一个简单的方法来将这个大端的乌龙转换成小端的乌龙?
解决方法
我相信Jon Skeet的
MiscUtil库(
nuget link)中的EndianBitConverter可以做你想要的.
您也可以使用位移操作来交换位:
uint swapEndianness(uint x) { return ((x & 0x000000ff) << 24) + // First byte ((x & 0x0000ff00) << 8) + // Second byte ((x & 0x00ff0000) >> 8) + // Third byte ((x & 0xff000000) >> 24); // Fourth byte }
用法:
atomSize = BitConverter.ToUInt32(buffer,0); atomSize = swapEndianness(atomSize);