PropertyDictionary.Remove 方法

定义

从字典中删除具有指定键的值。

重载

Remove(KeyValuePair<String,Object>)

返回指示要删除的对象的值。

Remove(String)

从集合中删除具有指定键的元素。

Remove(KeyValuePair<String,Object>)

返回指示要删除的对象的值。

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

实现

适用于

Remove(String)

从集合中删除具有指定键的元素。

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

实现

适用于