Pair<T1, T2>(T1, T2) Constructor
Public Sub New( _
ByVal t1 As T1, _
ByVal t2 As T2 _
)
This language is not supported or no code example is available.
public Pair(
T1 t1,
T2 t2
)
This language is not supported or no code example is available.
public:
Pair(
T1^ t1,
T2^ t2
)
This language is not supported or no code example is available.
Parameters
- t1
- T1
The first object of the pair.
- t2
- T2
The second object of the pair.