ExpandoObject.IDictionary<String,Object>.Remove(String) Método

Definición

Quita de IDictionary el elemento que tiene la clave especificada.

 virtual bool System.Collections.Generic.IDictionary<System.String,System.Object>.Remove(System::String ^ key) = System::Collections::Generic::IDictionary<System::String ^, System::Object ^>::Remove;
bool IDictionary<string,object>.Remove (string key);
abstract member System.Collections.Generic.IDictionary<System.String,System.Object>.Remove : string -> bool
override this.System.Collections.Generic.IDictionary<System.String,System.Object>.Remove : string -> bool
Function Remove (key As String) As Boolean Implements IDictionary(Of String, Object).Remove

Parámetros

key
String

Clave del elemento que se va a quitar.

Devoluciones

Es true si el elemento se quita correctamente; en caso contrario, es false. Este método también devuelve false si no se encontró key en el objeto IDictionary<TKey,TValue> original.

Implementaciones

Se aplica a