特定の数 (1 から 100 の間) の空白を StringBuilder に追加するにはどうすればよいですか?
StringBuilder nextLine = new StringBuilder();
string time = Util.CurrentTime;
nextLine.Append(time);
nextLine.Append(/* add (100 - time.Length) whitespaces */);
「理想的な」解決策は何ですか?for
ループは醜いです。whitespaces[i]
正確に空白を含む文字列を含む配列を作成することもできますi
が、それはかなり長いハードコードされた配列になります。