我們可以使用 Enumerable.Repeat() 創(chuàng)建一個(gè)具有非默認(rèn)值的數(shù)組。它
在C#中重復(fù)一個(gè)包含重復(fù)元素的集合。首先,設(shè)置哪個(gè)元素你
想要重復(fù)多少次。
示例1
class Program{ static void Main(string[] args){ var values = Enumerable.Repeat(10, 5); foreach (var item in values){ System.Console.WriteLine(item); } Console.ReadLine(); } }
登錄后復(fù)制
輸出
10 10 10 10 10
登錄后復(fù)制登錄后復(fù)制
Example 2
的翻譯為:
示例2
class Program{ static void Main(string[] args){ int[] values = Enumerable.Repeat(10, 5).ToArray(); foreach (var item in values){ System.Console.WriteLine(item); } Console.ReadLine(); } }
登錄后復(fù)制
輸出
10 10 10 10 10
登錄后復(fù)制登錄后復(fù)制
以上就是如何在 C# 中創(chuàng)建具有非默認(rèn)重復(fù)值的數(shù)組?的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注www.xfxf.net其它相關(guān)文章!