OzTupleCreateT1, T2, T3, T4, T5, T6, T7, T8 Method (T1, T2, T3, T4, T5, T6, T7, T8) |
Creates a new 8-tuple, or octuple.
Namespace: Ozeki.CommonAssembly: OzekiSDK (in OzekiSDK.dll) Version: 1.8.12.0 (1.8.12)
Syntax public static OzTuple<T1, T2, T3, T4, T5, T6, T7, OzTuple<T8>> Create<T1, T2, T3, T4, T5, T6, T7, T8>(
T1 item1,
T2 item2,
T3 item3,
T4 item4,
T5 item5,
T6 item6,
T7 item7,
T8 item8
)
Public Shared Function Create(Of T1, T2, T3, T4, T5, T6, T7, T8) (
item1 As T1,
item2 As T2,
item3 As T3,
item4 As T4,
item5 As T5,
item6 As T6,
item7 As T7,
item8 As T8
) As OzTuple(Of T1, T2, T3, T4, T5, T6, T7, OzTuple(Of T8))
public:
generic<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8>
static OzTuple<T1, T2, T3, T4, T5, T6, T7, OzTuple<T8>^>^ Create(
T1 item1,
T2 item2,
T3 item3,
T4 item4,
T5 item5,
T6 item6,
T7 item7,
T8 item8
)
static member Create :
item1 : 'T1 *
item2 : 'T2 *
item3 : 'T3 *
item4 : 'T4 *
item5 : 'T5 *
item6 : 'T6 *
item7 : 'T7 *
item8 : 'T8 -> OzTuple<'T1, 'T2, 'T3, 'T4, 'T5, 'T6, 'T7, OzTuple<'T8>>
Parameters
- item1
- Type: T1
The value of the first component of the tuple. - item2
- Type: T2
The value of the second component of the tuple. - item3
- Type: T3
The value of the third component of the tuple. - item4
- Type: T4
The value of the fourth component of the tuple. - item5
- Type: T5
The value of the fifth component of the tuple. - item6
- Type: T6
The value of the sixth component of the tuple. - item7
- Type: T7
The value of the seventh component of the tuple. - item8
- Type: T8
The value of the eighth component of the tuple.
Type Parameters
- T1
- The type of the first component of the tuple.
- T2
- The type of the second component of the tuple.
- T3
- The type of the third component of the tuple.
- T4
- The type of the fourth component of the tuple.
- T5
- The type of the fifth component of the tuple.
- T6
- The type of the sixth component of the tuple.
- T7
- The type of the seventh component of the tuple.
- T8
- The type of the eighth component of the tuple.
Return Value
Type:
OzTupleT1,
T2,
T3,
T4,
T5,
T6,
T7,
OzTupleT8An 8-tuple (octuple) whose value is (item1, item2, item3, item4, item5, item6, item7, item8).
See Also