ParallelEnumerable.Except 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
產生兩個平行序列的差異集合。
多載
Except<TSource>(ParallelQuery<TSource>, IEnumerable<TSource>) |
已淘汰.
永遠不可叫用這個 Except 多載。 此方法已標記為過時,呼叫它時永遠會擲回 NotSupportedException。 |
Except<TSource>(ParallelQuery<TSource>, ParallelQuery<TSource>) |
使用預設相等比較子來比較值,以便產生兩個平行序列的集合差異。 |
Except<TSource>(ParallelQuery<TSource>, IEnumerable<TSource>, IEqualityComparer<TSource>) |
已淘汰.
永遠不可叫用這個 Except 多載。 此方法已標記為過時,呼叫它時永遠會擲回 NotSupportedException。 |
Except<TSource>(ParallelQuery<TSource>, ParallelQuery<TSource>, IEqualityComparer<TSource>) |
使用指定的 IEqualityComparer<T> 來比較值,以便產生兩個平行序列的差異。 |
Except<TSource>(ParallelQuery<TSource>, IEnumerable<TSource>)
警告
The second data source of a binary operator must be of type System.Linq.ParallelQuery<T> rather than System.Collections.Generic.IEnumerable<T>. To fix this problem, use the AsParallel() extension method to convert the right data source to System.Linq.ParallelQuery<T>.
永遠不可叫用這個 Except 多載。 此方法已標記為過時,呼叫它時永遠會擲回 NotSupportedException。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static System::Linq::ParallelQuery<TSource> ^ Except(System::Linq::ParallelQuery<TSource> ^ first, System::Collections::Generic::IEnumerable<TSource> ^ second);
[System.Obsolete("The second data source of a binary operator must be of type System.Linq.ParallelQuery<T> rather than System.Collections.Generic.IEnumerable<T>. To fix this problem, use the AsParallel() extension method to convert the right data source to System.Linq.ParallelQuery<T>.")]
public static System.Linq.ParallelQuery<TSource> Except<TSource> (this System.Linq.ParallelQuery<TSource> first, System.Collections.Generic.IEnumerable<TSource> second);
[<System.Obsolete("The second data source of a binary operator must be of type System.Linq.ParallelQuery<T> rather than System.Collections.Generic.IEnumerable<T>. To fix this problem, use the AsParallel() extension method to convert the right data source to System.Linq.ParallelQuery<T>.")>]
static member Except : System.Linq.ParallelQuery<'Source> * seq<'Source> -> System.Linq.ParallelQuery<'Source>
<Extension()>
Public Function Except(Of TSource) (first As ParallelQuery(Of TSource), second As IEnumerable(Of TSource)) As ParallelQuery(Of TSource)
類型參數
- TSource
不使用這個類型參數。
參數
- first
- ParallelQuery<TSource>
不使用這個參數。
- second
- IEnumerable<TSource>
不使用這個參數。
傳回
這個多載一定會擲回 NotSupportedException。
- 屬性
例外狀況
當呼叫這個方法時所發生的例外狀況。
備註
此多載存在,不允許使用 Except 的左側數據源類型 ParallelQuery<TSource> ,以及類型的 IEnumerable<T>右數據源。 否則,Except 運算符似乎系結至平行實作,但實際上會繫結至循序實作。
另請參閱
適用於
Except<TSource>(ParallelQuery<TSource>, ParallelQuery<TSource>)
使用預設相等比較子來比較值,以便產生兩個平行序列的集合差異。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static System::Linq::ParallelQuery<TSource> ^ Except(System::Linq::ParallelQuery<TSource> ^ first, System::Linq::ParallelQuery<TSource> ^ second);
public static System.Linq.ParallelQuery<TSource> Except<TSource> (this System.Linq.ParallelQuery<TSource> first, System.Linq.ParallelQuery<TSource> second);
static member Except : System.Linq.ParallelQuery<'Source> * System.Linq.ParallelQuery<'Source> -> System.Linq.ParallelQuery<'Source>
<Extension()>
Public Function Except(Of TSource) (first As ParallelQuery(Of TSource), second As ParallelQuery(Of TSource)) As ParallelQuery(Of TSource)
類型參數
- TSource
輸入序列之項目的類型。
參數
- first
- ParallelQuery<TSource>
序列,其中同時不在 second
內的項目將會傳回。
- second
- ParallelQuery<TSource>
項目,若其項目同時出現在第一個序列中,便會從傳回的序列中移除這些項目。
傳回
序列,其中包含兩個序列之項目的差異。
例外狀況
first
或 second
為 Null 參考 (在 Visual Basic 中為 Nothing)。
評估查詢的期間發生一或多個例外狀況。
另請參閱
適用於
Except<TSource>(ParallelQuery<TSource>, IEnumerable<TSource>, IEqualityComparer<TSource>)
警告
The second data source of a binary operator must be of type System.Linq.ParallelQuery<T> rather than System.Collections.Generic.IEnumerable<T>. To fix this problem, use the AsParallel() extension method to convert the right data source to System.Linq.ParallelQuery<T>.
永遠不可叫用這個 Except 多載。 此方法已標記為過時,呼叫它時永遠會擲回 NotSupportedException。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static System::Linq::ParallelQuery<TSource> ^ Except(System::Linq::ParallelQuery<TSource> ^ first, System::Collections::Generic::IEnumerable<TSource> ^ second, System::Collections::Generic::IEqualityComparer<TSource> ^ comparer);
[System.Obsolete("The second data source of a binary operator must be of type System.Linq.ParallelQuery<T> rather than System.Collections.Generic.IEnumerable<T>. To fix this problem, use the AsParallel() extension method to convert the right data source to System.Linq.ParallelQuery<T>.")]
public static System.Linq.ParallelQuery<TSource> Except<TSource> (this System.Linq.ParallelQuery<TSource> first, System.Collections.Generic.IEnumerable<TSource> second, System.Collections.Generic.IEqualityComparer<TSource> comparer);
[System.Obsolete("The second data source of a binary operator must be of type System.Linq.ParallelQuery<T> rather than System.Collections.Generic.IEnumerable<T>. To fix this problem, use the AsParallel() extension method to convert the right data source to System.Linq.ParallelQuery<T>.")]
public static System.Linq.ParallelQuery<TSource> Except<TSource> (this System.Linq.ParallelQuery<TSource> first, System.Collections.Generic.IEnumerable<TSource> second, System.Collections.Generic.IEqualityComparer<TSource>? comparer);
[<System.Obsolete("The second data source of a binary operator must be of type System.Linq.ParallelQuery<T> rather than System.Collections.Generic.IEnumerable<T>. To fix this problem, use the AsParallel() extension method to convert the right data source to System.Linq.ParallelQuery<T>.")>]
static member Except : System.Linq.ParallelQuery<'Source> * seq<'Source> * System.Collections.Generic.IEqualityComparer<'Source> -> System.Linq.ParallelQuery<'Source>
<Extension()>
Public Function Except(Of TSource) (first As ParallelQuery(Of TSource), second As IEnumerable(Of TSource), comparer As IEqualityComparer(Of TSource)) As ParallelQuery(Of TSource)
類型參數
- TSource
不使用這個類型參數。
參數
- first
- ParallelQuery<TSource>
不使用這個參數。
- second
- IEnumerable<TSource>
不使用這個參數。
- comparer
- IEqualityComparer<TSource>
不使用這個參數。
傳回
這個多載一定會擲回 NotSupportedException。
- 屬性
例外狀況
當呼叫這個方法時所發生的例外狀況。
備註
此多載存在,不允許使用 Except 的左側數據源類型 ParallelQuery<TSource> ,以及類型的 IEnumerable<T>右數據源。 否則,Except 運算符似乎系結至平行實作,但實際上會繫結至循序實作。
另請參閱
適用於
Except<TSource>(ParallelQuery<TSource>, ParallelQuery<TSource>, IEqualityComparer<TSource>)
使用指定的 IEqualityComparer<T> 來比較值,以便產生兩個平行序列的差異。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static System::Linq::ParallelQuery<TSource> ^ Except(System::Linq::ParallelQuery<TSource> ^ first, System::Linq::ParallelQuery<TSource> ^ second, System::Collections::Generic::IEqualityComparer<TSource> ^ comparer);
public static System.Linq.ParallelQuery<TSource> Except<TSource> (this System.Linq.ParallelQuery<TSource> first, System.Linq.ParallelQuery<TSource> second, System.Collections.Generic.IEqualityComparer<TSource> comparer);
public static System.Linq.ParallelQuery<TSource> Except<TSource> (this System.Linq.ParallelQuery<TSource> first, System.Linq.ParallelQuery<TSource> second, System.Collections.Generic.IEqualityComparer<TSource>? comparer);
static member Except : System.Linq.ParallelQuery<'Source> * System.Linq.ParallelQuery<'Source> * System.Collections.Generic.IEqualityComparer<'Source> -> System.Linq.ParallelQuery<'Source>
<Extension()>
Public Function Except(Of TSource) (first As ParallelQuery(Of TSource), second As ParallelQuery(Of TSource), comparer As IEqualityComparer(Of TSource)) As ParallelQuery(Of TSource)
類型參數
- TSource
輸入序列之項目的類型。
參數
- first
- ParallelQuery<TSource>
序列,其中同時不在 second
內的項目將會傳回。
- second
- ParallelQuery<TSource>
項目,若其項目同時出現在第一個序列中,便會從傳回的序列中移除這些項目。
- comparer
- IEqualityComparer<TSource>
用來比較值的 IEqualityComparer<T>。
傳回
序列,其中包含兩個序列之項目的差異。
例外狀況
first
或 second
為 Null 參考 (在 Visual Basic 中為 Nothing)。
評估查詢的期間發生一或多個例外狀況。