string binary = Convert.ToString(15, 2);
Console.WriteLine("{0}", binary);
打印:
1111
我希望它打印 00001000
因为数据类型是字符串而不是整数,所以我不能这样做:
Because the data type is of string and not integer I cannot do something like this:
Console.WriteLine("{0:00000000}", binary);
Console.WriteLine( binary.PadLeft(8, '0'));
这篇关于如何用零填充二进制字符串?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!