Share via


Pair<T,V>(T, V) Constructor

Definition

[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Initializes a new Pair<T,V> object with two types to combine into one type.

public:
 Pair(T first, V second);
public Pair (T first, V second);
new Microsoft.EnterpriseManagement.Common.Pair<'T, 'V> : 'T * 'V -> Microsoft.EnterpriseManagement.Common.Pair<'T, 'V>
Public Sub New (first As T, second As V)

Parameters

first
T

The first type.

second
V

The second type.

Applies to