Table of Contents

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

TKey

The type of the key.

TValue

The 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

key TKey

The key.

value TValue

The 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