Use Skip : Skip « LINQ « C# / C Sharp






Use Skip

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

public class MainClass{
   public static void Main(){
       int[] numbers = { 1, 2, 3, 4, 5, 6, 7, 8, 9 };
       var query = numbers.Take(5);

       var query2 = numbers.Skip(5);
    }
}

 








Related examples in the same category

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