다음을 통해 공유


OrderedDictionary<TKey,TValue>.Remove 메서드

정의

오버로드

Remove(TKey)

지정된 키를 가진 요소를 IDictionary<TKey,TValue>제거합니다.

Remove(TKey, TValue)

OrderedDictionary<TKey,TValue> 지정된 키가 있는 값을 제거하고 요소를 값 매개 변수에 복사합니다.

Remove(TKey)

지정된 키를 가진 요소를 IDictionary<TKey,TValue>제거합니다.

public:
 virtual bool Remove(TKey key);
public bool Remove (TKey key);
abstract member Remove : 'Key -> bool
override this.Remove : 'Key -> bool
Public Function Remove (key As TKey) As Boolean

매개 변수

key
TKey

제거할 요소의 키입니다.

반환

요소가 성공적으로 제거되었는지 true. 그렇지 않으면 false. 이 메서드는 원래 IDictionary<TKey,TValue>key 없는 경우에도 false 반환합니다.

구현

적용 대상

Remove(TKey, TValue)

OrderedDictionary<TKey,TValue> 지정된 키가 있는 값을 제거하고 요소를 값 매개 변수에 복사합니다.

public:
 bool Remove(TKey key, [Runtime::InteropServices::Out] TValue % value);
public bool Remove (TKey key, out TValue value);
member this.Remove : 'Key * 'Value -> bool
Public Function Remove (key As TKey, ByRef value As TValue) As Boolean

매개 변수

key
TKey

제거할 요소의 키입니다.

value
TValue

제거된 요소입니다.

반환

요소를 성공적으로 찾아서 제거했는지 true. 그렇지 않으면 false.

적용 대상