ParallelEnumerable.Count 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回并行序列中的元素数量。
重载
Count<TSource>(ParallelQuery<TSource>) |
返回并行序列中的元素数量。 |
Count<TSource>(ParallelQuery<TSource>, Func<TSource,Boolean>) |
返回一个数字,表示在指定的并行序列中满足条件的元素数量。 |
Count<TSource>(ParallelQuery<TSource>)
- Source:
- ParallelEnumerable.cs
- Source:
- ParallelEnumerable.cs
- Source:
- ParallelEnumerable.cs
返回并行序列中的元素数量。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static int Count(System::Linq::ParallelQuery<TSource> ^ source);
public static int Count<TSource> (this System.Linq.ParallelQuery<TSource> source);
static member Count : System.Linq.ParallelQuery<'Source> -> int
<Extension()>
Public Function Count(Of TSource) (source As ParallelQuery(Of TSource)) As Integer
类型参数
- TSource
source
的元素类型。
参数
- source
- ParallelQuery<TSource>
包含要计数的元素的序列。
返回
输入序列中的元素数量。
例外
已使用通过 WithCancellation<TSource>(ParallelQuery<TSource>, CancellationToken) 传递的令牌取消了查询。
source
为 null 引用(在 Visual Basic 中为 Nothing)。
源中的元素数大于 Int32.MaxValue。 (在这种情况下 InnerException 为 OverflowException)- 或 - 在查询的评估过程中出现了一个或多个异常。
另请参阅
适用于
Count<TSource>(ParallelQuery<TSource>, Func<TSource,Boolean>)
- Source:
- ParallelEnumerable.cs
- Source:
- ParallelEnumerable.cs
- Source:
- ParallelEnumerable.cs
返回一个数字,表示在指定的并行序列中满足条件的元素数量。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static int Count(System::Linq::ParallelQuery<TSource> ^ source, Func<TSource, bool> ^ predicate);
public static int Count<TSource> (this System.Linq.ParallelQuery<TSource> source, Func<TSource,bool> predicate);
static member Count : System.Linq.ParallelQuery<'Source> * Func<'Source, bool> -> int
<Extension()>
Public Function Count(Of TSource) (source As ParallelQuery(Of TSource), predicate As Func(Of TSource, Boolean)) As Integer
类型参数
- TSource
source
的元素类型。
参数
- source
- ParallelQuery<TSource>
包含要计数的元素的序列。
返回
一个数字,表示序列中满足谓词函数条件的元素数量。
例外
已使用通过 WithCancellation<TSource>(ParallelQuery<TSource>, CancellationToken) 传递的令牌取消了查询。
source
或 predicate
为 null 引用(在 Visual Basic 中为 Nothing)。
源中的元素数大于 Int32.MaxValue。 (在这种情况下 InnerException 为 OverflowException)- 或 - 在查询的评估过程中出现了一个或多个异常。