Enumerable.Take(TSource) メソッド (System.Linq)
シーケンスの先頭から、指定された数の連続する要素を返します。 ...
SQLでは、TOP nに相当します。
ソースコード
using System; using System.Linq; namespace LinqSample { class Program { static void Main(string[] args) { int[] numbers = new int[] { 1, 2, 3, 4, 5 }; // 1, 2 foreach (int number in numbers.Take(2)) { Console.WriteLine(number); } Console.ReadKey(); } } }