使用 C# 管理位打包数据
我正在开发一个基于 TCP 的应用程序,该应用程序处理位打包消息,这意味着:传输/接收的消息不是字节对齐的。 例如,3 位代表字段 1,其中 19 位可能代表字段 2。我的问题是,有人知道 C# 库可以采用一组字节并设置/获取这些字节内的任意范围的位吗? 我见过& 在 C/C++ 中创建了类似的实用程序,但我需要 100% C# 解决方案,并且我不想再次重新发明轮子。
我查看了 BitArray 类,但它不允许引用任意范围的位。
I'm working on a TCP based application that processes bitpacked messages, meaning: The messages transmitted/received are not byte aligned. For instance 3 bits represent field 1, where 19 bits may represent field 2. My question is, does anyone know of a C# library that can take a set of bytes and set/get an arbitrary range of bits within those bytes? I've seen & created similar utilities in C/C++ but I need a 100% C# solution and I don't want to re-invent the wheel again.
I've looked at the BitArray class, but it doesn't allow for referencing arbitrary ranges of bits.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看此 CodeProject 解决方案 - 它是一个开源托管 BitStream 类,可从C#。
Check out this CodeProject solution - it is a open source managed BitStream class callable from C#.
我不知道有任何 bcl 类可以提供您想要的内容。 但您可以使用按位运算(移位、与、或...)来提取您感兴趣的字段。
例如,要获取从第 2 位开始、大小为 5 位的字段,请使用:
I'm not aware of any bcl classes that provide what you want. But you can use bitwise operations (shift, and, or, ...) to extract the fields of your interest.
For instance, to get a field starting at bit 2 with a size of 5 bits use: