亚洲熟妇无码久久精品,最近中文字幕在线看免费完整版,亚洲AV中文无码字幕色三,一级a性色生活片久久毛片,一本大道香蕉综合视频在线观看

重復(fù)輸出字符或字符串的方法

發(fā)布于: 2018-10-11    瀏覽: 1528    作者:Wu

    當(dāng)你需要對某一字符或字符串重復(fù)輸出時,可以參考下面2個方法。一個是new 字符串,另一個是使用Linq的Enumberable的Repeat方法來實現(xiàn)。


    代碼如下:

        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);
                }
            }


    測試:

        class Program
            {
                    static void Main(string[] args)
                       {
                            Bo obj = new Bo();


                            obj.RepeatCharacter('$', 8);
                            Console.WriteLine();


                            obj.RepeatString("insus", 8);
                            Console.WriteLine();
                        }
            }




 ——本文并非原創(chuàng),如有侵權(quán)請聯(lián)系管理員刪除。

在線客服

售前咨詢

售后服務(wù)

投訴/建議

服務(wù)熱線
0731-83091505
18874148081
亚洲熟妇无码久久精品,最近中文字幕在线看免费完整版,亚洲AV中文无码字幕色三,一级a性色生活片久久毛片,一本大道香蕉综合视频在线观看