String.Format("{0:D5}",16);

or
 int i=16;
 i.ToString("D5");
Result: 00016
 
5代表位数

相关文章: