Removes an item from the Dictionary.

Namespace: System.Extensions.Collections.ObjectModel
Assembly: System.Extensions (in System.Extensions.dll) Version: 0.0.0.5 (0.0.0.5)

Syntax

C#
protected virtual void RemoveItem(
	TKey key
)
Visual Basic
Protected Overridable Sub RemoveItem ( 
	key As TKey
)
Visual C++
protected:
virtual void RemoveItem(
	TKey key
)
F#
abstract RemoveItem : 
        key : 'TKey -> unit 
override RemoveItem : 
        key : 'TKey -> unit 

Parameters

key
Type: TKey
The key of the item to remove.

See Also