Csharp/C Sharp/LINQ/Enumerable.Repeat

Материал из .Net Framework эксперт
Перейти к: навигация, поиск

Returning a Sequence of Ten Integers All With the Value Two

<source lang="csharp"> using System; using System.Linq; using System.Collections; using System.Collections.Generic; public class MainClass {

   public static void Main() {
       IEnumerable<int> ints = Enumerable.Repeat(2, 10);
       foreach (int i in ints)
           Console.WriteLine(i);
   }

}

</source>


uses Repeat to generate a sequence that contains the number 7 ten times.

<source lang="csharp"> using System; using System.Collections.Generic; using System.Linq; using System.Text; public class MainClass {

   public static void Main() {
       var numbers = Enumerable.Repeat(7, 10);
       foreach (var n in numbers) {
           Console.WriteLine(n);
       }
   }

}

</source>