Click or drag to resize

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

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

Namespace: GSF.Collections
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.241-beta+912389e96d98840d2a999d490420db618dcbe4c6
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 FileBackedDictionary<TKey, TValue>.

Implements

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