Class ABT<TKey, TValue>
- Namespace
- SunamoData.Data
- Assembly
- SunamoData.dll
Represents a generic key-value pair with types TKey and TValue.
public class ABT<TKey, TValue>
Type Parameters
TKeyThe type of the key.
TValueThe type of the value.
- Inheritance
-
ABT<TKey, TValue>
- Derived
- Inherited Members
- Extension Methods
Constructors
ABT()
Initializes a new instance of the ABT<TKey, TValue> class.
public ABT()
ABT(TKey, TValue)
Initializes a new instance of the ABT<TKey, TValue> class with the specified key and value.
public ABT(TKey key, TValue value)
Parameters
keyTKeyThe key.
valueTValueThe value.
Properties
Key
Gets or sets the key.
public TKey Key { get; set; }
Property Value
- TKey
Value
Gets or sets the value.
public TValue Value { get; set; }
Property Value
- TValue