'Declaration Overloads Function GroupJoin (Of T2,TResult)( _ ByVal source As IIndexScanner(Of T2), _ ByVal resultSelector As Func(Of T,IEnumerable(Of T2),TResult) _ ) As IEnumerable(Of TResult)
Parameters
- source
- The second indexed collection to join to this collection.
- resultSelector
- A function to create a result element from an element from this collection and a collection of matching elements from the second collection.
Type Parameters
- T2
- The type of the elements of the second collection.
- TResult
- The type of the result elements.
Return Value
Enumeration of objects obtained by applying the result selector to group pairs, where each pair consists of an item of this collection and the corresponding enumeration of the items of the second collection joined to it.