ParallelEnumerable.Skip(Of TSource) Method (ParallelQuery(Of TSource), Int32)
.NET Framework (current version)
Bypasses a specified number of elements in a parallel sequence and then returns the remaining elements.
Assembly: System.Core (in System.Core.dll)
<ExtensionAttribute> Public Shared Function Skip(Of TSource) ( source As ParallelQuery(Of TSource), count As Integer ) As ParallelQuery(Of TSource)
Parameters
- source
-
Type:
System.Linq.ParallelQuery(Of TSource)
The sequence to return elements from.
- count
-
Type:
System.Int32
The number of elements to skip before returning the remaining elements.
Return Value
Type: System.Linq.ParallelQuery(Of TSource)A sequence that contains the elements that occur after the specified index in the input sequence.
Type Parameters
- TSource
The type of elements of source.
| Exception | Condition |
|---|---|
| ArgumentNullException | source is a null reference (Nothing in Visual Basic). |
| OperationCanceledException | The query was canceled with the token passed in through WithCancellation. |
| OverflowException | Count is greater than MaxValue |
| AggregateException | One or more exceptions occurred during the evaluation of the query. |
If count > source.Count(), no elements are returned.
Universal Windows Platform
Available since 8
.NET Framework
Available since 4.0
Portable Class Library
Supported in: portable .NET platforms
Windows Phone
Available since 8.1
Available since 8
.NET Framework
Available since 4.0
Portable Class Library
Supported in: portable .NET platforms
Windows Phone
Available since 8.1
Show: