C# 字节 [] 到列表<bool>



从bool[]到byte[]:将bool[]转换为byte[]

但我需要将byte[]转换为List,其中列表中的第一项是LSB。

我尝试了下面的代码,但当再次转换为字节和布尔时,我得到了两个完全不同的结果…:

public List<bool> Bits = new List<bool>();

    public ToBools(byte[] values)
    {
        foreach (byte aByte in values)
        {
            for (int i = 0; i < 7; i++)
            {
                Bits.Add(aByte.GetBit(i));
            }
        }
    }

    public static bool GetBit(this byte b, int index)
    {
        if (b == 0)
            return false;
        BitArray ba = b.Byte2BitArray();
        return ba[index];
    }

您只考虑7位,而不是8位。本说明书:

for (int i = 0; i < 7; i++)

应为:

for (int i = 0; i < 8; i++)

无论如何,以下是我将如何实现它:

byte[] bytes = ...
List<bool> bools = bytes.SelectMany(GetBitsStartingFromLSB).ToList();
...
static IEnumerable<bool> GetBitsStartingFromLSB(byte b)
{
    for(int i = 0; i < 8; i++)
    {
        yield return (b % 2 == 0) ? false : true;
        b = (byte)(b >> 1);
    }
}

相关内容

  • 没有找到相关文章

最新更新