OfTypeOfTypeIteratorSkipIterator Method |
Bypasses a specified number of elements in a sequence and then returns the remaining elements.
Namespace:
VelocityDb
Assembly:
VelocityDb (in VelocityDb.dll) Version: 11.1.0.0 (11.1)
Syntax public IEnumerable SkipIterator(
int count
)
Public Function SkipIterator (
count As Integer
) As IEnumerable
public:
IEnumerable^ SkipIterator(
int count
)
member SkipIterator :
count : int -> IEnumerable
Parameters
- count
- Type: SystemInt32
The number of elements to skip before returning the remaining elements.
Return Value
Type:
IEnumerableAn
IEnumerable that contains the elements that occur after the specified index in the input sequence.
See Also