Click or drag to resize

zipUnBoundZipUnBoundNullableT1, T2, T3 Method (IListT1, IListT2, IListT3)

Namespace:  WhetStone.Looping
Assembly:  WhetStone (in WhetStone.dll) Version: 1.0.4.0 (1.0.0.0)
Syntax
C#
public static IList<Tuple<Nullable<T1>, Nullable<T2>, Nullable<T3>>> ZipUnBoundNullable<T1, T2, T3>(
	this IList<T1> this,
	IList<T2> other,
	IList<T3> other2
)
where T1 : struct, new()
where T2 : struct, new()
where T3 : struct, new()

Parameters

this
Type: System.Collections.GenericIListT1
The first IListT.
other
Type: System.Collections.GenericIListT2
The second IListT.
other2
Type: System.Collections.GenericIListT3
The third IListT.

Type Parameters

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

Return Value

Type: IListTupleNullableT1, NullableT2, NullableT3
this transposed, filling ended IListTs with null.

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