| PairTKey, TValue Constructor (TKey, TValue) |
Initializes a new instance of the
PairTKey, TValue class with the specified key and value.
Namespace:
Ookii.Jumbo.IO
Assembly:
Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 2.0.0
Syntax public Pair(
TKey key,
TValue value
)
Public Sub New (
key As TKey,
value As TValue
)
public:
Pair(
TKey key,
TValue value
)
new :
key : 'TKey *
value : 'TValue -> Pair
Parameters
- key
- Type: TKey
The key of the key/value pair. - value
- Type: TValue
The value of the key/value pair.
See Also