Click or drag to resize

zipZipT1, T2, T3, T4 Method (IListT1, IListT2, IListT3, IListT4)

Namespace:  WhetStone.Looping
Assembly:  WhetStone (in WhetStone.dll) Version: 1.0.4.0 (1.0.0.0)
Syntax
C#
public static IList<Tuple<T1, T2, T3, T4>> Zip<T1, T2, T3, T4>(
	this IList<T1> a,
	IList<T2> b,
	IList<T3> c,
	IList<T4> d
)

Parameters

a
Type: System.Collections.GenericIListT1
The first IListT.
b
Type: System.Collections.GenericIListT2
The second IListT.
c
Type: System.Collections.GenericIListT3
The third IListT.
d
Type: System.Collections.GenericIListT4
The fourth IListT.

Type Parameters

T1
The type of the first IListT.
T2
The type of the second IListT.
T3
The type of the third IListT.
T4
The type of the fourth IListT.

Return Value

Type: IListTupleT1, T2, T3, T4
The IListTs, spliced together.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IListT1. 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).
Remarks
The result is only as long as the shortest input
See Also