Wintellect.PowerCollections Namespace
Algorithms Class
GhostDoc Pro Sample Help File

DictionaryBase<(Of <(<'TKey, TValue>)>)>..::..Contains Method

Determines if a dictionary contains a given KeyValuePair. This implementation checks to see if the dictionary contains the given key, and if the value associated with the key is equal to (via object.Equals) the value.

Namespace:  Wintellect.PowerCollections
Assembly:  PowerCollections (in PowerCollections.dll)

Syntax


public bool Contains(
	KeyValuePair<TKey, TValue> item
)
Public Function Contains ( _
	item As KeyValuePair(Of TKey, TValue) _
) As Boolean
public:
bool^ Contains(
	KeyValuePair<TKey, TValue>^ item
)

Parameters

item
Type: KeyValuePair<(Of <(<'TKey, TValue>)>)>
A KeyValuePair containing the Key and Value to check for.

Return Value