码迷,mamicode.com
首页 > Windows程序 > 详细

C#数字前补0

时间:2019-07-29 14:44:51      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:public   method   数字   class   eth   span   void   string   tostring   

[TestMethod]
        public void Test8()
        {
            int a = 9;
            string b = string.Format("{0:000000}", a);
            string c = a.ToString().PadLeft(6, 0);

        }

 

C#数字前补0

标签:public   method   数字   class   eth   span   void   string   tostring   

原文地址:https://www.cnblogs.com/hofmann/p/11263307.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!