Remove item from dictionary.

Namespace: MonoSoftware.Core.Collections
Assembly: MonoSoftware.Core (in MonoSoftware.Core.dll) Version: 1.0.40.669 (1.0.40.669)

Syntax

C#
public bool Remove(
	TKey key
)
Visual Basic
Public Function Remove ( 
	key As TKey
) As Boolean
Visual C++
public:
bool Remove(
	TKey key
)
F#
member Remove : 
        key : 'TKey -> bool 

Parameters

key
Type: TKey
Item key

Return Value

Type: Boolean
True if removed, False otherwise

See Also