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。