IDictionary<'TKey, 'TValue>.ContainsKey Method ('TKey)

 

Determines whether the IDictionary<'TKey, 'TValue> contains an element with the specified key.

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

abstract ContainsKey : 
        key:'TKey -> bool

Parameters

key
Type: TKey

The key to locate in the IDictionary<'TKey, 'TValue>.

Return Value

Type: System.Boolean

true if the IDictionary<'TKey, 'TValue> contains an element with the key; otherwise, false.

Exception Condition
ArgumentNullException

key is null.

Implementations can vary in how they determine equality of objects; for example, the List<'T> class uses Comparer<'T>.Default, whereas the Dictionary<'TKey, 'TValue> class allows the user to specify the IComparer<'T> implementation to use for comparing keys.

Implementations can vary in whether they allow key to be null.

The following code example shows how to use the ContainsKey method to test whether a key exists prior to calling the Add method. It also shows how to use the TryGetValue method, which can be a more efficient way to retrieve values if a program frequently tries key values that are not in the dictionary. Finally, it shows how to insert items using Item property (the indexer in C#).

This code is part of a larger example that can be compiled and executed. See System.Collections.Generic.IDictionary<'TKey, 'TValue>.

No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.

Universal Windows Platform
Available since 8
.NET Framework
Available since 2.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Return to top
Show: