Methods
-
Add(`0,
`1) Adds an element with the specified key and value to the dictionary. -
Add
Range(IEnumerable<Key Adds the specified key/value pairs to the dictionary.Value Pair<`0, `1>>) - Clear() Retrieves an empty dictionary that has the same ordering and key/value comparison rules as this dictionary instance.
-
Contains(Key
Value Determines whether the immutable dictionary contains the specified key/value pair.Pair<`0, `1>) - Remove(`0) Removes the element with the specified key from the immutable dictionary.
-
Remove
Range(IEnumerable<`0>) Removes the elements with the specified keys from the immutable dictionary. -
Set
Item(`0, Sets the specified key and value in the immutable dictionary, possibly overwriting an existing value for the key.`1) -
Set
Items(IEnumerable<Key Sets the specified key/value pairs in the immutable dictionary, possibly overwriting existing values for the keys.Value Pair<`0, `1>>) -
Try
Get Determines whether this dictionary contains a specified key.Key(`0, `0&)