Click or drag to resize

unZipUnZipT1, T2 Method (IListTupleT1, T2)

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

Parameters

this
Type: System.Collections.GenericIListTupleT1, T2
The IListT to split.

Type Parameters

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

Return Value

Type: TupleIListT1, IListT2
The individual IListTs.

Usage Note

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