  | RecentDictionaryTKey, TValueContainsValue Method  | 
 
            Determines whether the dictionary contains the specified value. The order of
            items in the dictionary is not modified.
            
 
    Namespace: 
   Scaleout.Collections
    Assembly:
   Scaleout.Collections (in Scaleout.Collections.dll) Version: 1.0.3.0 (1.0.3.0)
Syntaxpublic bool ContainsValue(
	TValue value
)
Parameters
- value
 - Type: TValue
The value to locate 
Return Value
Type: 
Booleantrue if the dictionary contains an element with the specified value; otherwise, false.
Remarks
            This in an O(n) operation.
            
See Also