C# byte[] 转 List

发布于 2024-11-09 12:57:23 字数 708 浏览 0 评论 0原文

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

但是我需要将 byte[] 转换为列表,其中列表中的第一项是 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];
    }

From bool[] to byte[]: Convert bool[] to byte[]

But I need to convert a byte[] to a List where the first item in the list is the LSB.

I tried the code below but when converting to bytes and back to bools again I have two totally different results...:

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

淡写薰衣草的香 2024-11-16 12:57:23

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

You're only considering 7 bits, not 8. This instruction:

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

Should be:

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

Anyway, here's how I would implement it:

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);
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文