Click or drag to resize

join.Join<T1, T2> Method (IEnumerable<T1>, IEnumerable<T2>)

Namespace:  WhetStone.Looping
Assembly:  WhetStone (in WhetStone.dll) Version: 1.0.4.0 (1.0.0.0)
Syntax
C#
public static IEnumerable<Tuple<T1, T2>> Join<T1, T2>(
	this IEnumerable<T1> a,
	IEnumerable<T2> b
)

Parameters

a
Type: System.Collections.Generic.IEnumerable<T1>
The first IEnumerable<T>.
b
Type: System.Collections.Generic.IEnumerable<T2>
The second IEnumerable<T>.

Type Parameters

T1
The type of the first IEnumerable<T>.
T2
The type of the second IEnumerable<T>.

Return Value

Type: IEnumerable<Tuple<T1, T2>>
The Cartesian multiple of a and b.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerable<T1>. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also