The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
This documentation is archived and is not being maintained.
ParallelEnumerable:: Join Method
.NET Framework (current version)
Correlates in parallel the elements of two sequences based on matching keys.
Namespace:
System.Linq Assembly:
System.Core (in System.Core.dll)
Name Description Join<TOuter, TInner, TKey, TResult> (ParallelQuery<TOuter>^, IEnumerable<TInner>^, Func<TOuter, TKey>^, Func<TInner, TKey>^, Func<TOuter, TInner, TResult>^)
Obsolete.
This Join overload should never be called. This method is marked as obsolete and always throws NotSupportedException when invoked.
Join<TOuter, TInner, TKey, TResult> (ParallelQuery<TOuter>^, IEnumerable<TInner>^, Func<TOuter, TKey>^, Func<TInner, TKey>^, Func<TOuter, TInner, TResult>^, IEqualityComparer<TKey>^)
Obsolete.
This Join overload should never be called. This method is marked as obsolete and always throws NotSupportedException when invoked.
Join<TOuter, TInner, TKey, TResult> (ParallelQuery<TOuter>^, ParallelQuery<TInner>^, Func<TOuter, TKey>^, Func<TInner, TKey>^, Func<TOuter, TInner, TResult>^) Correlates in parallel the elements of two sequences based on matching keys. The default equality comparer is used to compare keys.
Join<TOuter, TInner, TKey, TResult> (ParallelQuery<TOuter>^, ParallelQuery<TInner>^, Func<TOuter, TKey>^, Func<TInner, TKey>^, Func<TOuter, TInner, TResult>^, IEqualityComparer<TKey>^) Correlates in parallel the elements of two sequences based on matching keys. A specified IEqualityComparer<T> is used to compare keys.
Return to top