using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
class Program
{
static void Main()
{
int[] numbers = { 10, 9, 8, 7, 6 };
IEnumerable firstThree = numbers.Take(3);
foreach (int i in firstThree){
Console.WriteLine(i);
}
}
}
The output:
10
9
8