C#数字前补0
Posted hofmann
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#数字前补0相关的知识,希望对你有一定的参考价值。
[TestMethod] public void Test8() int a = 9; string b = string.Format("0:000000", a); string c = a.ToString().PadLeft(6, ‘0‘);
以上是关于C#数字前补0的主要内容,如果未能解决你的问题,请参考以下文章