Click or drag to resize

RankedDictionaryTKey, TValueContainsValue Method

Determines whether the dictionary contains the supplied value.

Namespace:  Kaos.Collections
Assembly:  KaosCollections (in KaosCollections.dll) Version: 4.2.0.0
Syntax
C#
public bool ContainsValue(
	TValue value
)

Parameters

value
Type: TValue
The value to locate.

Return Value

Type: Boolean
true if value is contained in the dictionary; otherwise false.
Remarks
This is a O(n) operation.
See Also