The Skip operator ignores the first x elements and outputs the rest : Skip « LINQ « C# / C Sharp






The Skip operator ignores the first x elements and outputs the rest

 

using System;
using System.Collections.Generic;
using System.Linq;
public class MainClass {
    public static void Main() {

        int[] numbers = { 10, 9, 8, 7, 6 };
        IEnumerable<int> lastTwo = numbers.Skip(3);     // { 7, 6 }

    }
}

 








Related examples in the same category

1.Use Skip
2.Skip the first element
3.uses Skip to get all but the first 4 elements of the array.
4.Nested Skip