SymbolResolver.Remove Método
Definição
Remove o símbolo especificado do SymbolResolver.Removes the specified symbol from the SymbolResolver.
Sobrecargas
| Remove(KeyValuePair<String,Object>) |
Remove o símbolo especificado do SymbolResolver.Removes the specified symbol from the SymbolResolver. |
| Remove(String) |
Remove um símbolo do SymbolResolver usando uma chave especificada.Removes a symbol from the SymbolResolver using a specified key. |
Remove(KeyValuePair<String,Object>)
Remove o símbolo especificado do SymbolResolver.Removes the specified symbol from the SymbolResolver.
public:
virtual bool Remove(System::Collections::Generic::KeyValuePair<System::String ^, System::Object ^> item);
public bool Remove (System.Collections.Generic.KeyValuePair<string,object> item);
abstract member Remove : System.Collections.Generic.KeyValuePair<string, obj> -> bool
override this.Remove : System.Collections.Generic.KeyValuePair<string, obj> -> bool
Public Function Remove (item As KeyValuePair(Of String, Object)) As Boolean
Parâmetros
- item
- KeyValuePair<String,Object>
O símbolo a ser removido.The symbol to remove.
Retornos
true se o símbolo for encontrado e removido com sucesso; caso contrário, false.true if the symbol is successfully found and removed; otherwise, false. Este método retorna false se o símbolo não estiver presente.This method returns false if the symbol is not present.
Implementações
Aplica-se a
Remove(String)
Remove um símbolo do SymbolResolver usando uma chave especificada.Removes a symbol from the SymbolResolver using a specified key.
public:
virtual bool Remove(System::String ^ key);
public bool Remove (string key);
abstract member Remove : string -> bool
override this.Remove : string -> bool
Public Function Remove (key As String) As Boolean
Parâmetros
- key
- String
A chave do símbolo a ser removido.The key of the symbol to remove.
Retornos
true se o símbolo for encontrado e removido com sucesso; caso contrário, false.true if the symbol is successfully found and removed; otherwise, false. Este método retorna false se o símbolo não estiver presente.This method returns false if the symbol is not present.