Architect's Log

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

IEnumerable.Skipメソッド

Enumerable.Skip(TSource) メソッド (System.Linq)
シーケンス内の指定された数の要素をバイパスし、残りの要素を返します。

SQLでは、NOT INに相当します。

ソースコード

using System;
using System.Linq;

namespace LinqSample {
    class Program {
        static void Main(string[] args) {
            int[] numbers = new int[] { 1, 2, 3, 4, 5 };
            // 4, 5
            foreach (int number in numbers.Skip(3)) {
                Console.WriteLine(number); 
            }

            Console.ReadKey();
        }
    }
}

実行結果