LINQ C# Tutorial

using System;
using System.Collections.Generic;
using System.Linq;
public class MainClass {
    public static void Main() {
        int[] numbers = { 10, 9, 8, 7, 6 };
        IEnumerable firstThree = numbers.Take(3);     // { 10, 9, 8 }
    }
}