 | zipUnBoundZipUnBoundT1, T2 Method (IListT1, IListT2, T1, T2) |
Get all the elements in
IListTs 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<T1, T2>> ZipUnBound<T1, T2>(
this IList<T1> this,
IList<T2> other,
T1 nilValue1,
T2 nilValue2
)
Parameters
- this
- Type: System.Collections.GenericIListT1
The first IListT. - other
- Type: System.Collections.GenericIListT2
The second IListT. - nilValue1
- Type: T1
The default value to assign when this has ended. - nilValue2
- Type: T2
The default value to assign when other has ended.
Type Parameters
- T1
- The type of the first IListT.
- T2
- The type of the second IListT.
Return Value
Type:
IListTupleT1,
T2this transposed, filling ended
IListTs with
nilValue1 or
nilValue2.
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).
See Also