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
。