
Partitioning Operator - Skip
The Skip operator skips a given number of elements from a sequence and then yields the remainder of the sequence.
This example uses Skip to get all but the first 4 elements of the array.
| using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication4 var allButFirst4Numbers = numbers.Skip(4); Console.WriteLine("All but first 4 numbers:"); Console.ReadLine(); |
Output:
Aspnet Discussion
- - Web application
- - Great Indian Developer Su
- - Aspx page inside Silverli
- - Open aspx page inside Sil
- - Guidance for a novice




