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.
C#では、入力として次のものがあります:
文字: "A" 長さ: 5
そして私は出力したい:
「ああああ」
ループ以外にこれを行うよりエレガントな方法はありますか?
文字列コンストラクターを使用できます。new string('A', 5);
new string('A', 5);
文字列を繰り返す文字列コンストラクターだけで文字列を作成できます。
Console.WriteLine(new String('A', 5));
はい:
String st = new String('A', 5);
MSDNを参照してください。