IDictionary.Remove(Object) 메서드

정의

개체에서 IDictionary 지정된 키를 가진 요소를 제거합니다.

public:
 void Remove(System::Object ^ key);
public void Remove(object key);
abstract member Remove : obj -> unit
Public Sub Remove (key As Object)

매개 변수

key
Object

제거할 요소의 키입니다.

예외

keynull입니다.

개체가 IDictionary 읽기 전용입니다.

-또는-

크기가 IDictionary 고정되어 있습니다.

예제

다음 코드 예제에서는 메서드를 구현 하는 방법을 보여 줍니다 Remove . 이 코드 예제는 클래스에 제공된 더 큰 예제의 IDictionary 일부입니다.

public void Remove(object key)
{
    if (key == null) throw new ArgumentNullException("key");
    // Try to find the key in the DictionaryEntry array
    Int32 index;
    if (TryGetIndexOfKey(key, out index))
    {
        // If the key is found, slide all the items up.
        Array.Copy(items, index + 1, items, index, ItemsInUse - index - 1);
        ItemsInUse--;
    }
    else
    {
        // If the key is not in the dictionary, just return.
    }
}
Public Sub Remove(ByVal key As Object) Implements IDictionary.Remove
    If key = Nothing Then
        Throw New ArgumentNullException("key")
    End If
    ' Try to find the key in the DictionaryEntry array
    Dim index As Integer
    If TryGetIndexOfKey(key, index) Then

        ' If the key is found, slide all the items up.
        Array.Copy(items, index + 1, items, index, (ItemsInUse - index) - 1)
        ItemsInUse = ItemsInUse - 1
    Else

        ' If the key is not in the dictionary, just return. 
    End If
End Sub

설명

개체에 IDictionary 지정된 키가 IDictionary 있는 요소가 없으면 변경되지 않은 상태로 유지됩니다. 예외가 던져지지 않습니다.

적용 대상