| PairT Constructor |
Initializes a new instance of the
PairT class with the given objects.
Namespace: DigitalRune.CollectionsAssembly: DigitalRune (in DigitalRune.dll) Version: 1.20.0.0 (1.20.1.14552)
Syntax public Pair(
T first,
T second
)
Public Sub New (
first As T,
second As T
)
public:
Pair(
T first,
T second
)
new :
first : 'T *
second : 'T -> Pair
Parameters
- first
- Type: T
The first object. - second
- Type: T
The second object.
See Also