SymbolResolver.Remove 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
从 SymbolResolver 中移除指定的符号。
重载
Remove(KeyValuePair<String,Object>) |
从 SymbolResolver 中移除指定的符号。 |
Remove(String) |
使用指定的键从 SymbolResolver 中移除符号。 |
Remove(KeyValuePair<String,Object>)
从 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
参数
- item
- KeyValuePair<String,Object>
要移除的符号。
返回
如果成功找到并移除该符号,则为 true
;否则为 false
。 如果符号不存在,则此方法返回 false
。
实现
适用于
Remove(String)
使用指定的键从 SymbolResolver 中移除符号。
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
参数
- key
- String
要移除的符号的键。
返回
如果成功找到并移除该符号,则为 true
;否则为 false
。 如果符号不存在,则此方法返回 false
。