I am really stumped on this one. In C# there is a hexadecimal constants representation format as below :
int a = 0xAF2323F5;
is there a binary constants representation format?
|
1
|
I am really stumped on this one. In C# there is a hexadecimal constants representation format as below :
is there a binary constants representation format?
|
||||||||||||
|
|
|
Nope, no binary literals in C#. You can of course parse a string in binary format using Convert.ToInt32, but I don't think that would be a great solution.
|
||||||||
|
|
|
You could use an extension method:
However, whether this is wise I'll leave up to you (given the fact it will operate on any string). |
||
|
|