Click or drag to resize

DictionaryList<TKey, TValue> .Remove(TKey) Method

Removes the element with the specified key from the DictionaryList<TKey, TValue>.

Namespace: GSF.Collections
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.239-beta+5928cebde0dd955df84e791f5ea67acbd192773e
Syntax
public bool Remove(
	TKey key
)
View Source

Parameters

key  TKey
The key of the element to remove.

Return Value

Boolean
true if the element is successfully removed; otherwise, false. This method also returns false if key was not found in the original DictionaryList<TKey, TValue>.

Implements

IDictionary<TKey, TValue>.Remove(TKey)
See Also