Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
現在、画面に表示するために整数を文字列に変換していますが、4 桁、つまり 10 = "0010" を維持したいと考えています。10 の整数から "0010" の文字列に移動する最良の方法は何ですか?
これは C# と .NET 4 にあります。
乾杯!
int num = 1; // pad with 0 up to 4 places string str = num.ToString("D4");
var str = 10.ToString("0000");
あなたが試すことができます :-
string str = num.ToString("D8"); //padding with 8 zero's
このリンクを確認してください