Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

c++

c#

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

like image 497
blitzkriegz Avatar asked Nov 15 '11 22:11

blitzkriegz


People also ask

What is C is used for?

C programming language is a machine-independent programming language that is mainly used to create many types of applications and operating systems such as Windows, and other complicated programs such as the Oracle database, Git, Python interpreter, and games and is considered a programming foundation in the process of ...

What is C for computer?

C is a powerful general-purpose programming language. It can be used to develop software like operating systems, databases, compilers, and so on. C programming is an excellent language to learn to program for beginners.

What is C language in simple words?

What Does C Programming Language (C) Mean? C is a high-level and general-purpose programming language that is ideal for developing firmware or portable applications. Originally intended for writing system software, C was developed at Bell Labs by Dennis Ritchie for the Unix Operating System in the early 1970s.


1 Answers

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

like image 198
jli Avatar answered Sep 23 '22 11:09

jli