SortedList<TKey,TValue>.Remove(TKey) Método
Definición
Quita el elemento con la clave especificada de SortedList<TKey,TValue>.Removes the element with the specified key from the 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
Parámetros
- key
- TKey
Clave del elemento que se va a quitar.The key of the element to remove.
Devoluciones
Es true
si el elemento se quita correctamente; en caso contrario, es false
.true
if the element is successfully removed; otherwise, false
. Este método también devuelve false
si no se encontró key
en el objeto SortedList<TKey,TValue> original.This method also returns false
if key
was not found in the original SortedList<TKey,TValue>.
Implementaciones
Excepciones
key
es null
.key
is null
.
Ejemplos
En el ejemplo de código siguiente se muestra cómo quitar un par clave-valor de la lista ordenada mediante el Remove método.The following code example shows how to remove a key/value pair from the sorted list using the Remove method.
Este ejemplo de código forma parte de un ejemplo más extenso proporcionado para la SortedList<TKey,TValue> clase.This code example is part of a larger example provided for the SortedList<TKey,TValue> class.
// 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
Comentarios
Este método realiza una búsqueda binaria; sin embargo, los elementos se mueven hacia arriba para rellenar el punto abierto, por lo que este método es una operación O ( n
), donde n
es Count .This method performs a binary search; however, the elements are moved up to fill in the open spot, so this method is an O(n
) operation, where n
is Count.