Click or drag to resize

zipUnBoundZipUnBoundTupleT1, T2 Method (IEnumerableT1, IEnumerableT2)

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

Parameters

this
Type: System.Collections.GenericIEnumerableT1
The first IEnumerableT.
other
Type: System.Collections.GenericIEnumerableT2
The second IEnumerableT.

Type Parameters

T1
The type of the first IEnumerableT.
T2
The type of the second IEnumerableT.

Return Value

Type: IEnumerableTupleTupleT1, TupleT2
this transposed, filling ended IEnumerableTs with .

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerableT1. 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