|
RedBlackTreeDictionaryTKey, TValueContains Method
|
Determines whether the dictionary contains a specific value.
Namespace:
Accord.Collections
Assembly:
Accord (in Accord.dll) Version: 3.8.0
Syntax public bool Contains(
KeyValuePair<TKey, TValue> item
)
Public Function Contains (
item As KeyValuePair(Of TKey, TValue)
) As Boolean
Request Example
View SourceParameters
- item
- Type: System.Collections.GenericKeyValuePairTKey, TValue
The object to locate in the dictionary.
Return Value
Type:
Booleantrue if
item is found in the dictionary; otherwise, false.
See Also