Pair Constructor
Initializes a new Pair object with two types to combine into one type.
Namespace: Microsoft.EnterpriseManagement.Common
Assembly: Microsoft.EnterpriseManagement.OperationsManager.Common (in microsoft.enterprisemanagement.operationsmanager.common.dll)
Usage
'Usage
Dim first As T
Dim second As V
Dim instance As New Pair(Of T, V)(first, second)
Syntax
'Declaration
Public Sub New ( _
first As T, _
second As V _
)
public Pair (
T first,
V second
)
public:
Pair (
T first,
V second
)
public Pair (
T first,
V second
)
public function Pair (
first : T,
second : V
)
Parameters
- first
The first type.
- second
The second type.
Platforms
Development Platforms
Windows Server 2008, Windows Vista, Windows Server 2003, and Windows XP
Target Platforms
Windows Server 2008,Windows Server 2003,Windows Vista,Windows XP
See Also
Reference
Pair Generic Class
Pair Members
Microsoft.EnterpriseManagement.Common Namespace