首先引入Linq命名空间,字符串重复返回需要用到Linq的函数
其次声明一个函数,函数参数分别为需要重复的字符串 s ,重复次数 n ,将字符串拼接后返回
最后,调用该函数输出
using System; using System.Linq; namespace Csharp { class Program { static void Main(string[] args) { Console.WriteLine(Repeat("hello",5)); // output: // hellohellohellohellohello } //声明函数,重复字符串,拼接后返回 public static string Repeat(string s,int n) { return string.Concat(Enumerable.Repeat(s, n)); } } }
摘自:https://zhuanlan.zhihu.com/p/143125567
本站文章除注明转载/出处外,均为原创,若要转载请务必注明出处。转载后请将转载链接通过邮件告知我站,谢谢合作。本站邮箱:admin@only4.work
尊重他人劳动成果,共创和谐网络环境。点击版权声明查看本站相关条款。