Skip the first element : Skip « LINQ « C# / C Sharp






Skip the first element

 

using System;
using System.Linq;
using System.Collections;
using System.Collections.Generic;
public class MainClass {
    public static void Main() {
        string[] presidents = {"A", "Art", "Buch", "Bush", "Car", "land"};

        IEnumerable<string> items = presidents.Skip(1);

        foreach (string item in items)
            Console.WriteLine(item);
    }
}

 








Related examples in the same category

1.The Skip operator ignores the first x elements and outputs the rest
2.Use Skip
3.uses Skip to get all but the first 4 elements of the array.
4.Nested Skip