OzTupleCreateT1 Method (T1) |
Creates a new 1-tuple, or singleton.
Namespace: Ozeki.CommonAssembly: OzekiSDK (in OzekiSDK.dll) Version: 1.8.12.0 (1.8.12)
Syntax public static OzTuple<T1> Create<T1>(
T1 item1
)
Public Shared Function Create(Of T1) (
item1 As T1
) As OzTuple(Of T1)
public:
generic<typename T1>
static OzTuple<T1>^ Create(
T1 item1
)
static member Create :
item1 : 'T1 -> OzTuple<'T1>
Parameters
- item1
- Type: T1
The value of the only component of the tuple.
Type Parameters
- T1
- The type of the only component of the tuple.
Return Value
Type:
OzTupleT1A tuple whose value is (item1).
See Also