다음을 통해 공유


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를 반환합니다.

구현

적용 대상