次の方法で出力テキストをフォーマットすることを目的として、文字列にマスクを適用するにはどうすればよいですか (最大 2 つの先行ゼロ)。
int a = 1, b = 10, c = 100;
string aF = LeadingZeroFormat(a), bF = LeadingZeroFormat(b), cF = LeadingZeroFormat(c);
Console.Writeline("{0}, {1}, {2}", aF, bF, cF); // "001, 010, 100"
最もエレガントなソリューションは何ですか?
前もって感謝します。