Pair<T,V>(T, V) Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
[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.