我需要将整数的输出填充到给定的长度.
例如,对于4位长度,整数4的输出是"0004"而不是"4".我怎样才能在C#2.0中这样做?
使用string.Format命令.
output = String.Format("{0:0000}", intVariable);
更多细节:http://msdn.microsoft.com/en-us/library/fht0f5be.aspx