SortedDictionary<TKey,TValue>.Remove(TKey) Méthode

Définition

Supprime l'élément avec la clé spécifiée d'SortedDictionary<TKey,TValue>.

public:
 virtual bool Remove(TKey key);
public bool Remove (TKey key);
abstract member Remove : 'Key -> bool
override this.Remove : 'Key -> bool
Public Function Remove (key As TKey) As Boolean

Paramètres

key
TKey

Clé de l'élément à supprimer.

Retours

true si la suppression de l'élément réussit ; sinon, false. Cette méthode retourne également false si key est introuvable dans SortedDictionary<TKey,TValue>.

Implémente

Exceptions

key a la valeur null.

Exemples

L’exemple de code suivant montre comment supprimer une paire clé/valeur du dictionnaire à l’aide de la Remove méthode .

Cet exemple de code fait partie d’un exemple plus grand fourni pour la SortedDictionary<TKey,TValue> classe .

// Use the Remove method to remove a key/value pair.
Console.WriteLine("\nRemove(\"doc\")");
openWith.Remove("doc");

if (!openWith.ContainsKey("doc"))
{
    Console.WriteLine("Key \"doc\" is not found.");
}
' Use the Remove method to remove a key/value pair.
Console.WriteLine(vbLf + "Remove(""doc"")")
openWith.Remove("doc")

If Not openWith.ContainsKey("doc") Then
    Console.WriteLine("Key ""doc"" is not found.")
End If

Remarques

Si ne SortedDictionary<TKey,TValue> contient pas d’élément avec la clé spécifiée, le SortedDictionary<TKey,TValue> reste inchangé. Aucune exception n’est générée.

Cette méthode est une opération O(log n).

S’applique à

Voir aussi