What is the C# equivalent of std::bitset of C++

后端 未结 2 691
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-18 18:39

What is the C# equivalent of std::bitset of C++?

相关标签:
2条回答
  • 2020-12-18 18:53

    Another option, if you want up to 64 bits but you don't want the overhead of a BitArray, is to put together your own BitVector64 using the samples from BitArray alternative for the .NET Micro Framework.

    0 讨论(0)
  • 2020-12-18 18:54

    There are a few options, including BitVector32, and BitArray.

    0 讨论(0)
提交回复
热议问题