ParallelEnumerable.Intersect(Of TSource) Method (ParallelQuery(Of TSource), ParallelQuery(Of TSource))
.NET Framework (current version)
Produces the set intersection of two parallel sequences by using the default equality comparer to compare values.
Assembly: System.Core (in System.Core.dll)
<ExtensionAttribute> Public Shared Function Intersect(Of TSource) ( first As ParallelQuery(Of TSource), second As ParallelQuery(Of TSource) ) As ParallelQuery(Of TSource)
Parameters
- first
-
Type:
System.Linq.ParallelQuery(Of TSource)
A sequence whose distinct elements that also appear in second will be returned.
- second
-
Type:
System.Linq.ParallelQuery(Of TSource)
A sequence whose distinct elements that also appear in the first sequence will be returned.
Return Value
Type: System.Linq.ParallelQuery(Of TSource)A sequence that contains the elements that form the set intersection of two sequences.
Type Parameters
- TSource
The type of the elements of the input sequences.
| Exception | Condition |
|---|---|
| OperationCanceledException | The query was canceled with the token passed in through WithCancellation. |
| ArgumentNullException | source or action is a null reference (Nothing in Visual Basic). |
| AggregateException | One or more exceptions occurred during the evaluation of the query. |
Universal Windows Platform
Available since 8
.NET Framework
Available since 4.0
Portable Class Library
Supported in: portable .NET platforms
Windows Phone
Available since 8.1
Available since 8
.NET Framework
Available since 4.0
Portable Class Library
Supported in: portable .NET platforms
Windows Phone
Available since 8.1
Show: