Click or drag to resize
DictionaryBaseTKey, TValueContainsKey Method
Determines whether a given key is found in the dictionary.

Namespace: X3Platform.Collections
Assembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntax
public virtual bool ContainsKey(
	TKey key
)

Parameters

key
Type: TKey
Key to look for in the dictionary.

Return Value

Type: Boolean
True if the key is present in the dictionary.

Implements

IDictionaryTKey, TValueContainsKey(TKey)
Remarks
The default implementation simply calls TryGetValue and returns what it returns.
See Also