TPair<TKey,TValue> Record

Definition

Represents a key/value pair.

Delphi
TPair<TKey,TValue> = record

Type Parameters

TKey

The type of the key.

TValue

The type of the value.

Constructors

Create(TKey, TValue)

Initializes a new instance of the TPair<TKey,TValue> record with the specified key and value.

Properties

Key

Gets the key in the key/value pair.

Value

Gets the value in the key/value pair.

See also