📅  最后修改于: 2023-12-03 15:13:53.312000             🧑  作者: Mango
在C#中,可以使用乘号(*)运算符将字符串重复指定次数。这种操作被称为字符串复制。
string repeatedString = stringToRepeat * repeatCount;
其中,
stringToRepeat
表示需要重复的字符串。repeatCount
表示需要重复的次数。string repeatedString = "Hello, world! " * 3;
Console.WriteLine(repeatedString);
// 输出:Hello, world! Hello, world! Hello, world!
repeatCount
必须是一个整数,不可以是小数或者负数。stringToRepeat
是 null
或者空字符串,那么重复的结果也会是一个空字符串。repeatCount
是 0,那么重复的结果也会是一个空字符串。使用乘号运算符可以方便地将字符串重复指定次数。这种方法在编写一些需要重复使用相同字符串的代码时非常有用。