CollectionExtensions.Remove<TKey,TValue> 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
dictionary
에서 지정된 key
을(를) 사용하여 값 제거하려고 시도합니다.
public:
generic <typename TKey, typename TValue>
[System::Runtime::CompilerServices::Extension]
static bool Remove(System::Collections::Generic::IDictionary<TKey, TValue> ^ dictionary, TKey key, [Runtime::InteropServices::Out] TValue % value);
public static bool Remove<TKey,TValue> (this System.Collections.Generic.IDictionary<TKey,TValue> dictionary, TKey key, out TValue value);
static member Remove : System.Collections.Generic.IDictionary<'Key, 'Value> * 'Key * 'Value -> bool
<Extension()>
Public Function Remove(Of TKey, TValue) (dictionary As IDictionary(Of TKey, TValue), key As TKey, ByRef value As TValue) As Boolean
형식 매개 변수
- TKey
dictionary
에 있는 키의 형식입니다.
- TValue
dictionary
의 값 형식입니다.
매개 변수
- dictionary
- IDictionary<TKey,TValue>
TKey
형식의 키와 TValue
형식의 값을 사용하는 사전입니다.
- key
- TKey
제거할 값의 키입니다.
- value
- TValue
이 메서드가 true
을(를) 반환하면 제거되는 값이지만, 이 메서드가 false
을(를) 반환하면 TValue
의 default
값입니다.
반환
값을 지정된 key
이(가) 있는 dictionary
에서 찾은 경우 true
이고, dictionary
에서 지정된 key
과(와) 연결된 값을 찾을 수 없는 경우 false
입니다.
예외
dictionary
은 null
입니다.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET