Pair<T1, T2> Constructor
Constructs a pair of values from the given values.
Namespace: Microsoft.BusinessData.Infrastructure
Assembly: Microsoft.BusinessData (in Microsoft.BusinessData.dll)
Syntax
'Declaration
Public Sub New ( _
t1 As T1, _
t2 As T2 _
)
'Usage
Dim t1 As T1
Dim t2 As T2
Dim instance As New Pair(t1, t2)
public Pair(
T1 t1,
T2 t2
)
Parameters
t1
Type: T1The first value.
t2
Type: T2The second value.