ParallelEnumerable.Skip<TSource> 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
跳过并行序列中指定数量的元素,然后返回剩余的元素。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static System::Linq::ParallelQuery<TSource> ^ Skip(System::Linq::ParallelQuery<TSource> ^ source, int count);
public static System.Linq.ParallelQuery<TSource> Skip<TSource> (this System.Linq.ParallelQuery<TSource> source, int count);
static member Skip : System.Linq.ParallelQuery<'Source> * int -> System.Linq.ParallelQuery<'Source>
<Extension()>
Public Function Skip(Of TSource) (source As ParallelQuery(Of TSource), count As Integer) As ParallelQuery(Of TSource)
类型参数
- TSource
source
的元素类型。
参数
- source
- ParallelQuery<TSource>
要从其返回元素的序列。
- count
- Int32
返回剩余元素前要跳过的元素数量。
返回
一个序列,其中包含输入序列中的指定索引后出现的元素。
例外
source
为 null 引用(在 Visual Basic 中为 Nothing)。
已使用通过 WithCancellation<TSource>(ParallelQuery<TSource>, CancellationToken) 传递的令牌取消了查询。
Count 大于 Int32.MaxValue
评估查询期间发生一个或多个异常。
注解
如果计数 > 源。计数 () ,不返回任何元素。