Skips elements up to a specified position starting from the first element in a sequence.
Signature of Skip:
Public static IEnumerable Skip(this IEnumerable source,int count);
Example
int[] numbers = { 1, 5, 8, 4, 9, 3, 6, 7, 2, 0 };
var SkipFirstFiveElement = numbers.Take(5);
Output: The Result is 3,6,7,2 and 0 To Get The Element.