Функция возвращает первые n элементов и игнорирует остальные.
Main.cs
using System; //добавить ссылку using System.Linq; class Program { public static int Main() { int[] ara = new int[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; var query = ara.Take(5); foreach(var i in query) { Console.Write("{0} ", i); } Console.WriteLine(); Console.ReadKey(); return 0; } }
using System; //добавить ссылку using System.Linq; class Program { public static int Main() { int[] ara = new int[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; var query = ara.Take(5); foreach(var i in query) { Console.Write("{0} ", i); } Console.WriteLine(); Console.ReadKey(); return 0; } }
1 2 3 4 5