string binary = Convert.ToString(15, 2);
Console.WriteLine("{0}", binary);
Prints:
1111
I want it to print 00001000
Because the data type is of string and not integer I cannot do something like this:
Console.WriteLine("{0:00000000}", binary);
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…