This page is specific to
Microsoft Visual Studio 2008/.NET Framework 3.5
Other versions are also available for the following:
.NET Framework Class Library
Enumerable..::.GroupJoin Method
Correlates the elements of two sequences based on key equality, and groups the results.

Overload List
|
| Name | Description |
|---|
.gif) .gif) .gif) .gif) | GroupJoin<(Of <(TOuter, TInner, TKey, TResult>)>)(IEnumerable<(Of <(TOuter>)>), IEnumerable<(Of <(TInner>)>), Func<(Of <(TOuter, TKey>)>), Func<(Of <(TInner, TKey>)>), Func<(Of <(TOuter, IEnumerable<(Of <(TInner>)>), TResult>)>)) | Correlates the elements of two sequences based on equality of keys and groups the results. The default equality comparer is used to compare keys. |
.gif) .gif) .gif) .gif) | GroupJoin<(Of <(TOuter, TInner, TKey, TResult>)>)(IEnumerable<(Of <(TOuter>)>), IEnumerable<(Of <(TInner>)>), Func<(Of <(TOuter, TKey>)>), Func<(Of <(TInner, TKey>)>), Func<(Of <(TOuter, IEnumerable<(Of <(TInner>)>), TResult>)>), IEqualityComparer<(Of <(TKey>)>)) | Correlates the elements of two sequences based on key equality and groups the results. A specified IEqualityComparer<(Of <(T>)>) is used to compare keys. |
Top

See Also