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