c# integer to bit string

43

c# integer to bit string -

int value = 8;
string binary = Convert.ToString(value, 2);

Comments

Submit
0 Comments