ExpandoObject.ICollection<KeyValuePair<String,Object>>.Remove 메서드

정의

컬렉션에서 키와 값을 제거합니다.

 virtual bool System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<System.String,System.Object>>.Remove(System::Collections::Generic::KeyValuePair<System::String ^, System::Object ^> item) = System::Collections::Generic::ICollection<System::Collections::Generic::KeyValuePair<System::String ^, System::Object ^>>::Remove;
bool ICollection<KeyValuePair<string,object>>.Remove (System.Collections.Generic.KeyValuePair<string,object> item);
abstract member System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<System.String,System.Object>>.Remove : System.Collections.Generic.KeyValuePair<string, obj> -> bool
override this.System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<System.String,System.Object>>.Remove : System.Collections.Generic.KeyValuePair<string, obj> -> bool
Function Remove (item As KeyValuePair(Of String, Object)) As Boolean Implements ICollection(Of KeyValuePair(Of String, Object)).Remove

매개 변수

item
KeyValuePair<String,Object>

컬렉션에서 제거할 키와 값을 나타내는 KeyValuePair<TKey,TValue> 구조체입니다.

반환

키와 값을 찾아서 제거했으면 true이고, 제거하지 못했으면 false입니다. 이 메서드는 ICollection<T>에 키와 값이 없는 경우 false를 반환합니다.

구현

적용 대상