C#Big-endian ulong来自4个字节

时间:2010-07-20 21:47:27

标签: c# integer endianness

我试图将一个4字节数组转换为C#中的ulong。我目前正在使用此代码:

atomSize = BitConverter.ToUInt32(buffer, 0);

字节[4]包含:

0 0 0 32

但是,字节是Big-Endian。有没有一种简单的方法可以将这个Big-Endian ulong转换为Little-Endian ulong?

7 个答案:

答案 0 :(得分:19)

我相信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);

答案 1 :(得分:7)

System.Net.IPAddress.NetworkToHostOrder(atomSize);会翻转你的字节。

答案 2 :(得分:5)

我建议在类固醇上使用Mono's DataConvert BitConverter。它允许您直接读取大端字节数组,并在BitConverter上进行大量改进。

指向来源的直接链接是here

答案 3 :(得分:4)

BitConverter.ToUInt32(buffer.Reverse().ToArray(), 0)

没有

答案 4 :(得分:2)

这可能已经过时但我很惊讶没有人想出这个最简单的答案,只需要一行......

// buffer is 00 00 00 32
Array.Reverse(buffer);
// buffer is 32 00 00 00
atomSize = BitConverter.ToUInt32(buffer, 0);

我用它来比较在C#(little-endian)中生成的校验和与用Java生成的校验和(big-endian)。

答案 5 :(得分:1)

在.net core(> = 2.1)中,您可以利用它来代替:

BinaryPrimitives.ReadUInt32BigEndian(buffer);

这样,您就可以确定要读取的字节序。

https://apisof.net/catalog/System.Buffers.Binary.BinaryPrimitives.ReadUInt32BigEndian(ReadOnlySpan%3CByte%3E)

如果您想知道它的工作原理,可以在其中实现它:https://github.com/dotnet/coreclr/blob/de68c9ddd18f863fd67098ab28d19206c9c66627/src/System.Private.CoreLib/shared/System/Buffers/Binary/ReaderBigEndian.cs#L75

答案 6 :(得分:0)

firstSingle = BitConverter.ToSingle(buffer,0);
secondSingle = BitConverter.ToSingle(buffer,2); 

var result = BitConverter.ToUInt32(BitConverter.GetBytes(secondSingle).Concat(BitConverter.GetBytes(firstSingle).ToArray());