IReadOnlyDictionary<TKey,TValue>.ContainsKey(TKey) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Determines whether the read-only dictionary contains an element that has the specified key.
public:
bool ContainsKey(TKey key);
public bool ContainsKey (TKey key);
abstract member ContainsKey : 'Key -> bool
Public Function ContainsKey (key As TKey) As Boolean
Parameters
- key
- TKey
The key to locate.
Returns
true
if the read-only dictionary contains an element that has the specified key; otherwise, false
.
Exceptions
key
is null
.
Remarks
Implementations can vary in how they determine the equality of objects; for example, the class that implements IReadOnlyDictionary<TKey,TValue> might use the Comparer<T>.Default property, or it might implement the IComparer<T> method.
Implementations can vary in whether they allow key
to be null
.