Pair<T1, T2>Implicit Conversion (Pair<T1, T2> to Tuple<T1, T2>) |
Implicitly converts the pair instance to a tuple.
Namespace:
Dundas.BI.WebApi
Assembly:
Dundas.BI.WebApiCore (in Dundas.BI.WebApiCore.dll) Version: 2.0.0.0 (25.1.0.1000)
Syntaxpublic static implicit operator Tuple<T1, T2> (
Pair<T1, T2> pair
)
Public Shared Widening Operator CType (
pair As Pair(Of T1, T2)
) As Tuple(Of T1, T2)
static implicit operator Tuple<T1, T2>^ (
Pair<T1, T2>^ pair
)
F# does not support the declaration of new casting operators.
Parameters
- pair
- Type: Dundas.BI.WebApi.Pair<T1, T2>
The pair.
Return Value
Type:
Tuple<T1,
T2>The tuple.
See Also