[C#][C++] BitArray class object

  • Context: C/C++ 
  • Thread starter Thread starter Silicon Waffle
  • Start date Start date
  • Tags Tags
    Class
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
1 reply · 2K views
Silicon Waffle
Messages
160
Reaction score
202
I am learning both languages for coming certified exams :D
I have a code line in C# like this

Code:
byte[] resource=...;
BitArray data=new BitArray(resource.ToArray());
I would like to do this in C++ (I am using dynamic_bitset of boost - don't know if this a bad choice)

Code:
std::vector<unsigned char>resource=...
boost::dynamic_bitset<> data(resource.begin(),resource.end());
I am not a fan of boost, have you any other ways to covert the above C# code into C++. bitset of C++ only allows specification of template bitset size at compile time.
 
Last edited by a moderator: