gpt4 book ai didi

c# - 如何读取字节数组中的每第三位

转载 作者:行者123 更新时间:2023-12-03 02:50:32 25 4
gpt4 key购买 nike

我有一个 48 字节的字节数组,想要读取该数组中字节的每第三位,我该如何实现这一点?

这是我的设备的输出

100510000 10000000 100390000 10000000 100390000 10000000 100460000 10000000 100390000 10000000 100390000 10000000 100390000 10000000 100390000 10000000 100390000 10000000 100320000 10000000 100460000 10000000 100390000 10000000 100390000 10000000 100320000 10000000 100460000 10000000 100390000 10000000 100300000 10000000 100300000 10000000 100310000 10000000 100310000 10000000 100390000 10000000 100300000 10000000 100320000 10000000 120560000 10000000

最佳答案

byte[] bytes;
for (var i = 0; i < bytes.Length; i++)
{
bytes[i] &= 4;
}

关于c# - 如何读取字节数组中的每第三位,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16148709/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com