The methods of System.Collections.Generic.Dictionary<TKey,TValue> are listed below. For a list of all members, see the Dictionary<TKey,TValue> Members list.
See Also: Inherited members from System.Object
Add(TKey, TValue) Adds an element with the specified key and value to the dictionary.Clear() Removes all elements from the dictionary.ContainsKey(TKey) : bool Determines whether the dictionary contains an element with a specific key.ContainsValue(TValue) : bool Determines whether the dictionary contains an element with a specific value.GetEnumerator() : Dictionary<TKey, TValue>.Enumerator Returns an enumerator that can be used to iterate over the dictionary.GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext) Documentation for this section has not yet been entered.OnDeserialization(object) Documentation for this section has not yet been entered.Remove(TKey) : bool Removes the element with the specified key from the dictionary.TryGetValue(TKey, out TValue) : bool Documentation for this section has not yet been entered.