ParallelEnumerable::Skip<TSource> Method (ParallelQuery<TSource>^, Int32)
Bypasses a specified number of elements in a parallel sequence and then returns the remaining elements.
Assembly: System.Core (in System.Core.dll)
public: generic<typename TSource> [ExtensionAttribute] static ParallelQuery<TSource>^ Skip( ParallelQuery<TSource>^ source, int count )
Parameters
- source
-
Type:
System.Linq::ParallelQuery<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<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.
Available since 8
.NET Framework
Available since 4.0
Portable Class Library
Supported in: portable .NET platforms
Windows Phone
Available since 8.1