C# 中的字节数组作为位域?
.NET 中是否有内置类或其他东西可以让我将字节数组视为大位字段?
Is there a built-in class or something in .NET that would allow me to treat a byte-array as a large bitfield?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 BitArray 类。
下面是一个示例,解释了使用字节数组时发生的情况:
此代码产生以下输出。
Take a look at the BitArray class.
Here is an example explaining what is going on when using a byte array:
This code produces the following output.