我建立了一個前綴0整數的字符串,如果需要這樣的方式:快速的方式來建立字符串與整數前導0?
// myInt as input, for example: 101;
List<string> sList = new List<string>();
string format = "00#"; // how to build format dynamicall?
for(int i= 1; i <= myInt; i++)
{
sList.Add(i.ToString(format));
}
預期的結果應該是:
001
002
...
010
...
101
如果我的整數數爲10或1000,怎麼能我動態地建立格式?
但是,C#能否將Math.Ceiling(double)的結果隱式轉換爲int? – 2009-06-30 16:33:11