System.Generics.Collections.TPair

De RAD Studio API Documentation
Aller à : navigation, rechercher

Delphi

  TPair<TKey,TValue> = record
    Key: TKey;
    Value: TValue;
    constructor Create(const AKey: TKey; const AValue: TValue);
  end;

C++

template<typename TKey, typename TValue> struct __declspec(delphirecord) TPair__2

Propriétés

Type Visibilité  Source Unité  Parent
record
struct
public
System.Generics.Collections.pas
System.Generics.Collections.hpp
System.Generics.Collections System.Generics.Collections

Description

TPair est un enregistrement contenant une paire clé-valeur.

Une variable de type TPair contient une paire clé-valeur.

Voir aussi