C#Big-endian ulong从4个字节

前端之家收集整理的这篇文章主要介绍了C#Big-endian ulong从4个字节前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图在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);
原文链接:https://www.f2er.com/c/115288.html

猜你在找的C&C++相关文章