Whetstone Class reference
Whetstone Class reference
Whetstone
WhetStone Namespaces
WhetStone.Looping
unZip Class
unZip Methods
UnZip Method
UnZip(T1, T2) Method (IEnumerable(Tuple(T1, T2)))
UnZip(T1, T2, T3) Method (IEnumerable(Tuple(T1, T2, T3)))
UnZip(T1, T2, T3, T4) Method (IEnumerable(Tuple(T1, T2, T3, T4)))
UnZip(T1, T2, T3, T4, T5) Method (IEnumerable(Tuple(T1, T2, T3, T4, T5)))
UnZip(T1, T2) Method (IList(Tuple(T1, T2)))
UnZip(T1, T2, T3) Method (IList(Tuple(T1, T2, T3)))
UnZip(T1, T2, T3, T4) Method (IList(Tuple(T1, T2, T3, T4)))
UnZip(T1, T2, T3, T4, T5) Method (IList(Tuple(T1, T2, T3, T4, T5)))
unZip
UnZip
T1
,
T2
Method (IList
Tuple
T1
,
T2
)
Splits an
IList
T
of
Tuple
s to separate
IList
T
s.
Namespace:
WhetStone.Looping
Assembly:
WhetStone (in WhetStone.dll) Version: 1.0.4.0 (1.0.0.0)
Syntax
C#
Copy
public
static
Tuple
<
IList
<T1>,
IList
<T2>>
UnZip
<T1, T2>(
this
IList
<
Tuple
<T1, T2>>
this
)
Parameters
this
Type:
System.Collections.Generic
IList
Tuple
T1
,
T2
The
IList
T
to split.
Type Parameters
T1
The first type of the
Tuple
.
T2
The second type of the
Tuple
.
Return Value
Type:
Tuple
IList
T1
,
IList
T2
The individual
IList
T
s.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IList
Tuple
T1
,
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
Reference
unZip Class
UnZip Overload
WhetStone.Looping Namespace