C#byte []到List <bool> </bool>

时间:2011-05-23 16:11:06

标签: c# byte boolean steganography

从bool []到byte []:Convert bool[] to byte[]

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

我尝试了下面的代码,但是当转换为字节并再次回到bools时,我有两个完全不同的结果......:

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];
    }

1 个答案:

答案 0 :(得分:6)

你只考虑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);
    }
}