Click or drag to resize

RankedDictionaryTKey, TValueKeyCollectionICollectionTKeyContains Method

Determines whether the collection contains the supplied key.

Namespace:  Kaos.Collections
Assembly:  KaosCollections (in KaosCollections.dll) Version: 4.2.0.0
Syntax
C#
bool ICollection<TKey>.Contains(
	TKey key
)

Parameters

key
Type: TKey
The key to locate.

Return Value

Type: Boolean
true if key is contained in the collection; otherwise false.

Implements

ICollectionTContains(T)
Remarks
This is a O(log n) operation.
See Also