PropertyDictionary.Remove 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
지정한 키를 가진 값을 사전에서 제거합니다.
오버로드
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
를 반환합니다.