ParallelEnumerable.LongCount 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回平行序列中表示項目總數的 Int64。
多載
LongCount<TSource>(ParallelQuery<TSource>) |
傳回平行序列中表示項目總數的 Int64。 |
LongCount<TSource>(ParallelQuery<TSource>, Func<TSource,Boolean>) |
傳回 Int64,其表示平行序列中滿足條件的項目數量。 |
LongCount<TSource>(ParallelQuery<TSource>)
傳回平行序列中表示項目總數的 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>
包含要計算之項目的序列。
傳回
輸入序列中的項目數目。
例外狀況
source
是 null 參考 (在 Visual Basic 中為 Nothing)。
來源中的項目數目大於 Int32.MaxValue。 或者,評估查詢的期間發生一或多個例外狀況。
計算結果大於 Int32.MaxValue。
另請參閱
適用於
LongCount<TSource>(ParallelQuery<TSource>, Func<TSource,Boolean>)
傳回 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>
包含要計算之項目的序列。
傳回
數字,代表序列中符合述詞函式之條件的項目數目。
例外狀況
source
或 predicate
為 Null 參考 (在 Visual Basic 中為 Nothing)。
來源中的項目數目大於 Int32.MaxValue。 或者,評估查詢的期間發生一或多個例外狀況。
計算結果大於 Int32.MaxValue。