使用 C# 管理位打包数据

发布于 2024-07-29 05:13:30 字数 243 浏览 2 评论 0原文

我正在开发一个基于 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 技术交流群。

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

发布评论

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

评论(2

我很OK 2024-08-05 05:13:30

查看此 CodeProject 解决方案 - 它是一个开源托管 BitStream 类,可从C#。

Check out this CodeProject solution - it is a open source managed BitStream class callable from C#.

阳光的暖冬 2024-08-05 05:13:30

我不知道有任何 bcl 类可以提供您想要的内容。 但您可以使用按位运算(移位、与、或...)来提取您感兴趣的字段。

例如,要获取从第 2 位开始、大小为 5 位的字段,请使用:

int extract = (source & 0x7C) >> 2;

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:

int extract = (source & 0x7C) >> 2;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文