标签:style blog color os ar strong sp div on
语法:public string PadLeft(
int totalWidth, char paddingChar
)
概述,实现的效果是右对齐,返回一个总长度为 totalWidth,如果实际长度小于totalWidth,则用 字符 paddingChar填充.
例如,对于 实现如下效果(月 日 年)的格式(它们是整型):
9 26 1963 9 27 1963 9 28 1963 9 29 1963 9 30 1963 10 1 1963 10 2 1963 10 3 1963 10 4 1963 10 5 1963 10 6 1963 10 7 1963
可以用如下代码实现:
1 month.ToString().PadLeft(2, ‘ ‘) + " " + (curDay + 1).ToString().PadLeft(2, ‘ ‘) + " " + year.ToString().PadLeft(4, ‘ ‘)
标签:style blog color os ar strong sp div on
原文地址:http://www.cnblogs.com/listened/p/4050747.html