Calling the Range Operator : Enumerable.Range « LINQ « C# / C Sharp






Calling the Range Operator

 

using System;
using System.Linq;
using System.Collections;
using System.Collections.Generic;

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

 








Related examples in the same category

1.Use Generation Operators: Range