G
Guest
This should be *so* easy! How do I convert a Byte or int to a binary string representation in C#
In JavaScript, it goes like this for an int:
javascript
123).toString(2
or
javascript
0xFE).toString(2
No problem. So, how do I do the same in C#? What simple thing am I missing
CSharpene
In JavaScript, it goes like this for an int:
javascript

or
javascript

No problem. So, how do I do the same in C#? What simple thing am I missing
CSharpene