Removes item with the given key from the dictionary, if it is present. Returns false if the remove operation was unsuccessful.

Namespace:  Endeca.Web.Url.Seo.Utility
Assembly:  Endeca.Web.Url.Seo (in Endeca.Web.Url.Seo.dll) Version: 2.1.3.0 (2.1.3.622)

Syntax

C#
public bool Remove(
	T key
)
Visual Basic (Declaration)
Public Function Remove ( _
	key As T _
) As Boolean
Visual C++
public:
virtual bool Remove(
	T key
) sealed

Parameters

key
Type: T
Key of item to remove from dictionary.

Return Value

Returns boolean if remove operation was successful.

Implements

IDictionary<(Of <(TKey, TValue>)>)..::.Remove(TKey)

See Also