当你需要对某一字符或字符串重复输出时,可以参考下面2个方法。一个是new 字符串,另一个是使用Linq的Enumberable的Repeat方法来实现。
class Bo { public void RepeatCharacter(char c, int times) { string output = new String(c, times); Console.WriteLine(output); } public void RepeatString(string str, int times) { var output = string.Concat(Enumerable.Repeat(str, times)); Console.WriteLine(output); } }
Source Code
测试:
class Program { static void Main(string[] args) { Bo obj = new Bo(); obj.RepeatCharacter('$', 8); Console.WriteLine(); obj.RepeatString("insus", 8); Console.WriteLine(); } }
Source Code
点击查看更多内容
为 TA 点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦