|
Add(TKey, TValue)
|
Adds an element with the specified key and value to the dictionary.
|
|
Add(KeyValuePair<TKey, TValue>)
|
Adds a key-value pair to the dictionary.
|
|
Clear()
|
Removes all items from the dictionary.
|
|
Contains(KeyValuePair<TKey, TValue>)
|
Determines whether the dictionary contains a specific key-value pair.
|
|
ContainsKey(TKey)
|
Determines whether the dictionary contains an element with the specified key.
|
|
CopyTo(KeyValuePair<TKey, TValue>[], Int32)
|
Copies the elements of the dictionary to an array of key-value pairs, starting at the specified array index.
|
|
Equals(Object, Object)
static
|
Determines whether the specified object instances are considered equal.
|
|
Equals(Object)
|
Determines whether the specified object is equal to the current object.
|
|
GetEnumerator()
|
Returns an enumerator that iterates through the dictionary.
|
|
GetHashCode()
|
Serves as the default hash function.
|
|
GetType()
|
Gets the Type of the current instance.
|
|
MemberwiseClone()
protected
|
Creates a shallow copy of the current Object.
|
|
ReferenceEquals(Object, Object)
static
|
Determines whether the specified Object instances are the same instance.
|
|
Remove(TKey)
|
Removes the value with the specified key from the dictionary.
|
|
Remove(KeyValuePair<TKey, TValue>)
|
Removes the specified key-value pair from the dictionary.
|
|
ToString()
|
Returns a string that represents the current object.
|
|
TryGetValue(TKey, out TValue)
|
Tries to get the value associated with the specified key.
|