问:如何把整数转成有固定长度的字符串?
答:使用下列代码可以输出长度为4的字符串,即生成“0012”
int theValue = 12;
theValue.ToString("0000");
问:如何把整数转成有固定长度的字符串?
答:使用下列代码可以输出长度为4的字符串,即生成“0012”
int theValue = 12;
theValue.ToString("0000");
转载于:https://www.cnblogs.com/westsource/archive/2007/04/04/699906.html