IEnumerable<T>.Skip Method
Definition
Bypasses a specified number of elements in the sequence and then returns the remaining elements.
Delphi
function Skip(count: Integer): IEnumerable<T>
Parameters
- count
- Integer
The number of elements to skip before returning the remaining elements.
Returns
IEnumerable<T>
A sequence that contains the elements that occur after the specified index in the input sequence.