Returning a Sequence of Ten Integers All With the Value Two : Enumerable.Repeat : LINQ C# Source Code


Custom Search

C# Source Code » LINQ » Enumerable.Repeat »

 

Returning a Sequence of Ten Integers All With the Value Two








    
 

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

    }
}

 
    
   
  
   







HTML code for linking to this page:

Follow Navioo On Twitter

C# Source Code

 Navioo LINQ
» Enumerable.Repeat