Click or drag to resize

DictionaryList<TKey, TValue> .ContainsKey Method

Determines whether the DictionaryList<TKey, TValue> contains an element with the specified key.

Namespace: GSF.Collections
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.230-beta+03417d7b5cff037b24e882d7adef82d359b34964
Syntax
public bool ContainsKey(
	TKey key
)
View Source

Parameters

key  TKey
The key to locate in the DictionaryList<TKey, TValue>.

Return Value

Boolean
true if the DictionaryList<TKey, TValue> contains an element with the key; otherwise, false.

Implements

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