|
ReadOnlyKeyedCollection< TKey, TValue> . Contains Method (KeyValuePair< TKey, TValue> )
|
Determines whether the ICollection< T> contains a specific value.
Namespace:
Accord.Collections
Assembly:
Accord (in Accord.dll) Version: 3.8.0
Syntaxpublic 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.Generic.KeyValuePair<TKey, TValue>
The object to locate in the ICollection<T>.
Return Value
Type:
Boolean
true if
item is found in the
ICollection<T>; otherwise, false.
See Also