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.244-beta+cf93f5f8aea4b941e9b426fe4e180c2bd85d31a2
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