SortedList<TKey,TValue>.Remove(TKey) 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.
Supprime l'élément avec la clé spécifiée d'SortedList<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 le SortedList<TKey,TValue> d'origine.
Implémente
Exceptions
key
a la valeur null
.
Exemples
L’exemple de code suivant montre comment supprimer une paire clé/valeur de la liste triée à l’aide de la Remove méthode .
Cet exemple de code fait partie d’un exemple plus grand fourni pour la SortedList<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("\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
// Use the Remove method to remove a key/value pair.
printfn "\nRemove(\"doc\")"
openWith.Remove("doc") |> ignore
if not (openWith.ContainsKey("doc")) then
printfn "Key \"doc\" is not found."
Remarques
Cette méthode effectue une recherche binaire ; toutefois, les éléments sont déplacés vers le haut pour remplir l’emplacement ouvert. Cette méthode est donc une opération O(n
), où n
est Count.