Skip the first four : Skip « LINQ « C# / CSharp Tutorial






using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Linq.Expressions;
using System.Xml.Linq;

    class Program
    {
        static void Main(string[] args)
        {

            int[] integers = { 1, 6, 2, 27, 10 };
            
            IEnumerable<int> skipFirstFourNumbers = integers.Skip(4);
            Console.WriteLine("Skip first 4 numbers:");
            foreach (var num in skipFirstFourNumbers)
            {
              Console.WriteLine(num);
            }
        }
    }








22.68.Skip
22.68.1.The Skip operator ignores the first x elements and outputs the rest
22.68.2.Use Skip
22.68.3.Skip the first element
22.68.4.uses Skip to get all but the first 4 elements of the array.
22.68.5.Nested Skip
22.68.6.Skip numbes equals 50
22.68.7.Skip the first four