 | zipUnBound.ZipUnBoundTuple<T1, T2, T3> Method (IList<T1>, IList<T2>, IList<T3>) |
Get all the elements in
IList< T> s spliced together, continuing until they all end.
Namespace:
WhetStone.Looping
Assembly:
WhetStone (in WhetStone.dll) Version: 1.0.4.0 (1.0.0.0)
Syntaxpublic static IList<Tuple<Tuple<T1>, Tuple<T2>, Tuple<T3>>> ZipUnBoundTuple<T1, T2, T3>(
this IList<T1> this,
IList<T2> other,
IList<T3> other2
)
Parameters
- this
- Type: System.Collections.Generic.IList<T1>
The first IList<T>. - other
- Type: System.Collections.Generic.IList<T2>
The second IList<T>. - other2
- Type: System.Collections.Generic.IList<T3>
The third IList<T>.
Type Parameters
- T1
- The type of the first IList<T>.
- T2
- The type of the second IList<T>.
- T3
- The type of the third IList<T>.
Return Value
Type:
IList<Tuple<Tuple<T1>,
Tuple<T2>,
Tuple<T3>>>this transposed, filling ended
IList< T> s with null.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IList<T1>. 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