SortedList.System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Contains Method 

Note: This method is new in the .NET Framework version 2.0.

Determines whether the ICollection contains a specific element.

Namespace: System.Collections.Generic
Assembly: System (in system.dll)

Syntax

'Declaration
Private Function System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Contains ( _
    keyValuePair As KeyValuePair(Of TKey, TValue) _
) As Boolean Implements ICollection(Of KeyValuePair(Of TKey, TValue)).Contains
'Usage
Dim instance As SortedList(Of TKey, TValue)
Dim keyValuePair As KeyValuePair(Of TKey, TValue)
Dim returnValue As Boolean

returnValue = CType(instance, ICollection(Of KeyValuePair(Of TKey, TValue))).Contains(keyValuePair)
bool ICollection<KeyValuePair<TKey,TValue>>.Contains (
    KeyValuePair<TKey,TValue> keyValuePair
)
private:
virtual bool System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Contains (
    KeyValuePair<TKey, TValue> keyValuePair
) sealed = ICollection<KeyValuePair<TKey, TValue>>::Contains
J# supports the use of explicit interface implementations, but not the declaration of new ones.
JScript supports the use of explicit interface implementations, but not the declarations of new ones.

Parameters

Return Value

true if keyValuePair is found in the ICollection; otherwise, false.

Remarks

This method is an O(log n) operation, where n is Count.

Platforms

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.

Version Information

.NET Framework

Supported in: 2.0

.NET Compact Framework

Supported in: 2.0

See Also

Reference

SortedList Generic Class
SortedList Members
System.Collections.Generic Namespace
SortedList.ContainsKey Method
SortedList.ContainsValue Method
KeyValuePair Generic Structure