C#设置一个两位数,少了补0

string a="1";

左边补0:

a=a.PadLeft(2,'0');

右边补0:

a=a.PadRight(2,'0');
 MessageBox.Show(a);

你可能感兴趣的:(C#,c#,开发语言)