Determines whether the IDictionary object contains an element with the specified key.
- key
- The key to locate in the IDictionary object.
true if the IDictionary contains an element with the key; otherwise, false.
Type Reason ArgumentNullException key is null.
Implementations can vary in whether they allow the key to be null.
Starting with the .NET Framework 2.0, this method uses the collection’s objects’ object.Equals(object) and IComparable.CompareTo(object) methods on item to determine whether item exists. In the earlier versions of the .NET Framework, this determination was made by using the object.Equals(object) and IComparable.CompareTo(object) methods of the item parameter on the objects in the collection.