IMap<K,V>.HasKey(K) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Détermine si la carte contient la clé spécifiée.
public:
bool HasKey(K key);
bool HasKey(K const& key);
public bool HasKey(K key);
Public Function HasKey (key As K) As Boolean
Paramètres
- key
- K
Clé associée à l’élément à localiser.
Retours
Boolean
bool
True si la clé est trouvée ; sinon, false.
Remarques
Lors de la programmation avec .NET, cette interface est masquée et les développeurs doivent utiliser l’interface System.Collections.Generic.IDictionary<TKey,TValue> .