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

Definição

Remove o elemento que tem a chave especificada do IDictionary.Removes the element that has the specified key from the IDictionary.

 virtual bool System.Collections.Generic.IDictionary<string,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<string,object>.Remove : string -> bool
override this.System.Collections.Generic.IDictionary<string,object>.Remove : string -> bool
Function Remove (key As String) As Boolean Implements IDictionary(Of String, Object).Remove

Parâmetros

key
String

A chave do elemento a ser removido.The key of the element to remove.

Retornos

Boolean

true se o elemento for removido com êxito; caso contrário, false.true if the element is successfully removed; otherwise, false. Esse método também retornará false se key não tiver sido encontrado no IDictionary<TKey,TValue> original.This method also returns false if key was not found in the original IDictionary<TKey,TValue>.

Implementações

Aplica-se a