Architect's Log

I'm a Cloud Architect. I'm highly motivated to reduce toils with driving DevOps.

IEnumerable.Takeメソッド

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();
        }
    }
}

実行結果