Leggere in inglese

Condividi tramite


Dictionary<TKey,TValue>.ContainsKey(TKey) Metodo

Definizione

Determina se la raccolta Dictionary<TKey,TValue> contiene la chiave specificata.

public bool ContainsKey (TKey key);

Parametri

key
TKey

Chiave da individuare in Dictionary<TKey,TValue>.

Restituisce

true se Dictionary<TKey,TValue> contiene un elemento con la chiave specificata; in caso contrario, false.

Implementazioni

Eccezioni

key è null.

Esempio

Nell'esempio di codice seguente viene illustrato come usare il ContainsKey metodo per verificare se esiste una chiave prima di chiamare il Add metodo . Illustra anche come usare il TryGetValue metodo per recuperare i valori, che è un modo efficiente per recuperare i valori quando un programma tenta spesso le chiavi che non si trovano nel dizionario. Infine, mostra il modo meno efficiente per verificare se esistono chiavi usando la Item[] proprietà (l'indicizzatore in C#).

Questo esempio di codice fa parte di un esempio più ampio fornito per la Dictionary<TKey,TValue> classe (openWith è il nome del dizionario usato in questo esempio).

// ContainsKey can be used to test keys before inserting
// them.
if (!openWith.ContainsKey("ht"))
{
    openWith.Add("ht", "hypertrm.exe");
    Console.WriteLine("Value added for key = \"ht\": {0}",
        openWith["ht"]);
}
// When a program often has to try keys that turn out not to
// be in the dictionary, TryGetValue can be a more efficient
// way to retrieve values.
string value = "";
if (openWith.TryGetValue("tif", out value))
{
    Console.WriteLine("For key = \"tif\", value = {0}.", value);
}
else
{
    Console.WriteLine("Key = \"tif\" is not found.");
}
// The indexer throws an exception if the requested key is
// not in the dictionary.
try
{
    Console.WriteLine("For key = \"tif\", value = {0}.",
        openWith["tif"]);
}
catch (KeyNotFoundException)
{
    Console.WriteLine("Key = \"tif\" is not found.");
}

Commenti

Questo metodo si avvicina a un'operazione O(1).

Si applica a

Vedi anche