Creates the specified item1.
Namespace:
Atomia.Billing.Core.Sdk.Utils.Containers
Assembly:
Atomia.Billing.Core.Sdk (in Atomia.Billing.Core.Sdk.dll) Version: 18.10.7096.28998
Syntax public static Tuple<T1, T2> Create<T1, T2>(
T1 item1,
T2 item2
)
Public Shared Function Create(Of T1, T2) (
item1 As T1,
item2 As T2
) As Tuple(Of T1, T2)
public:
generic<typename T1, typename T2>
static Tuple<T1, T2>^ Create(
T1 item1,
T2 item2
)
static member Create :
item1 : 'T1 *
item2 : 'T2 -> Tuple<'T1, 'T2>
Parameters
- item1
- Type: T1
The item1. - item2
- Type: T2
The item2.
Type Parameters
- T1
- The type of the 1.
- T2
- The type of the 2.
Return Value
Type:
TupleT1,
T2[Missing <returns> documentation for "M:Atomia.Billing.Core.Sdk.Utils.Containers.Tuple.Create``2(``0,``1)"]
See Also