这是一种方法-

using System;

class Program
{
    static void Main(string[] args)
    {
        //
        // Create an array of four bytes.
        // ... Then convert it into an integer and unsigned integer.
        //
        byte[] array = new byte[4];
        array[0] = 1; // Lowest
        array[1] = 64;
        array[2] = 0;
        array[3] = 0; // Sign bit
        //
        // Use BitConverter to convert the bytes to an int and a uint.
        // ... The int and uint can have different values if the sign bit differs.
        //
        int result1 = BitConverter.ToInt32(array, 0); // Start at first index
        uint result2 = BitConverter.ToUInt32(array, 0); // First index
        Console.WriteLine(result1);
        Console.WriteLine(result2);
        Console.ReadLine();
    }
}

输出

16385
16385

我只想知道这是怎么回事?

最佳答案

BitConverter.ToInt32 的文档实际上有一些非常好的示例。假设 BitConverter.IsLittleEndian 返回true,则array[0]是最低有效字节,如您所示...尽管array[3]不仅是符号位,它还是最高有效字节,其中包括符号位(第7位),但其余部分位代表幅度。

因此,在您的情况下,最低有效字节为1,下一个字节为64-结果为:

( 1 * (1 << 0) ) +    // Bottom 8 bits
(64 * (1 << 8) ) +    // Next 8 bits, i.e. multiply by 256
( 0 * (1 << 16)) +    // Next 8 bits, i.e. multiply by 65,536
( 0 * (1 << 24))      // Top 7 bits and sign bit, multiply by 16,777,216

这是16385。如果设置了符号位,则需要以不同的方式考虑这两种情况,但是在这种情况下,这很简单。

关于c# - BitConverter.ToInt32如何工作?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7993840/

10-12 15:00