可能重复:
如何将 BitArray 转换为单个 int?
如何将整数读取为 a BitArray(6)
(假设可以包含)以及如何将 a 转换BitArray(6)
为无符号/有符号整数。
可能重复:
如何将 BitArray 转换为单个 int?
如何将整数读取为 a BitArray(6)
(假设可以包含)以及如何将 a 转换BitArray(6)
为无符号/有符号整数。
byte[] bytes = { 0, 0, 0, 25 };
// If the system architecture is little-endian (that is, little end first),
// reverse the byte array.
if (BitConverter.IsLittleEndian)
Array.Reverse(bytes);
int i = BitConverter.ToInt32(bytes, 0);
Console.WriteLine("int: {0}", i);
// Output: int: 25
BitArray FromInt32(Int32 a)
{
byte[] bytes = BitConverter.GetBytes(a);
return new BitArray(bytes);
}
对于反向操作,请参见前面提到的这个问题。