ExpandoObject.ICollection<KeyValuePair<String,Object>>.Remove Método

Definición

Quita una clave y un valor de la colección.

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

Parámetros

item
KeyValuePair<String,Object>

Estructura KeyValuePair<TKey,TValue> que representa la clave y el valor que se van a quitar de la colección.

Devoluciones

true si la clave y el valor se encuentran y quitan correctamente; de lo contrario, false. Este método devuelve false si no se encuentran la clave y el valor en ICollection<T>.

Implementaciones

Se aplica a