Click or drag to resize

RouletteDictionaryTKey, TValueContainsValue Method

Determines whether the dictionary contains the specified value.

Namespace:  Scaleout.Collections
Assembly:  Scaleout.Collections (in Scaleout.Collections.dll) Version: 1.0.3.0 (1.0.3.0)
Syntax
C#
public bool ContainsValue(
	TValue value
)

Parameters

value
Type: TValue
The value to locate

Return Value

Type: Boolean
true if the dictionary contains an element with the specified value; otherwise, false.
Remarks
This in an O(n) operation.
See Also