Oberon SET concept #6862
Answered
by
HaloFour
The-Futurist
asked this question in
Q&A
Oberon SET concept
#6862
-
Is there anything in C# (already exists or under consideration) that corresponds to the SET as defined in the Oberon (and earlier Wirth) languages? |
Beta Was this translation helpful? Give feedback.
Answered by
HaloFour
Jan 6, 2023
Replies: 2 comments 2 replies
-
The BCL offers BitArray and BitVector32 data types. C# has no special data types for this, it only offers integral data types and bitwise operators on them. |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
333fred
-
Thanks. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The BCL offers BitArray and BitVector32 data types. C# has no special data types for this, it only offers integral data types and bitwise operators on them.