Click or drag to resize

unZipUnZipT1, T2, T3 Method (IEnumerableTupleT1, T2, T3)

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

Parameters

this
Type: System.Collections.GenericIEnumerableTupleT1, T2, T3
The IEnumerableT to split.

Type Parameters

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

Return Value

Type: TupleIEnumerableT1, IEnumerableT2, IEnumerableT3
The individual IEnumerableTs.

Usage Note

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