Dictionary Methods
.NET Framework 2.0
(see also
Protected Methods
)
Top
| Name | Description | |
|---|---|---|
| Add | Adds the specified key and value to the dictionary. |
| Clear | Removes all keys and values from the Dictionary. |
| ContainsKey | Determines whether the Dictionary contains the specified key. |
| ContainsValue | Determines whether the Dictionary contains a specific value. |
| Equals | Overloaded. Determines whether two Object instances are equal. (inherited from Object) |
| GetEnumerator | Returns an enumerator that iterates through the Dictionary. |
| GetHashCode | Serves as a hash function for a particular type. (inherited from Object) |
| GetObjectData | Implements the System.Runtime.Serialization.ISerializable interface and returns the data needed to serialize the Dictionary instance. |
| GetType | Gets the Type of the current instance. (inherited from Object) |
| OnDeserialization | Implements the System.Runtime.Serialization.ISerializable interface and raises the deserialization event when the deserialization is complete. |
| ReferenceEquals | Determines whether the specified Object instances are the same instance. (inherited from Object) |
| Remove | Removes the value with the specified key from the Dictionary. |
| ToString | Returns a String that represents the current Object. (inherited from Object) |
| TryGetValue | Gets the value associated with the specified key. |
| Name | Description | |
|---|---|---|
| Finalize | Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection. (inherited from Object) |
| MemberwiseClone | Creates a shallow copy of the current Object. (inherited from Object) |
Top