Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Include Protected Members
Include Inherited Members
Defines methods and properties that handle read-only dictionary collections.
The IReadOnlyDictionary<TKey, TValue> type exposes the following members.
Properties
Name | Description | |
---|---|---|
![]() |
Count | Gets the number of items in the collection. (Inherited from IReadOnlyCollection<T>.) |
![]() |
Item[Int32] | Gets the item at a specified index. (Inherited from IReadOnlyCollection<T>.) |
![]() |
Item[TKey] | Gets the item that exists at a specified key. |
![]() |
Keys | Gets the collection of keys in the dictionary. |
![]() |
Values | Gets the collection of values in the dictionary. |
Top
Methods
Name | Description | |
---|---|---|
![]() |
Contains | Determines whether the collection contains a specific item. (Inherited from IReadOnlyCollection<T>.) |
![]() |
ContainsKey | Determines whether the dictionary contains a specific key. |
![]() |
CopyTo | Copies the items of the collection to an array starting at a specified index. (Inherited from IReadOnlyCollection<T>.) |
![]() |
GetEnumerator() | (Inherited from IEnumerable<KeyValuePair<TKey, TValue>>.) |
![]() |
GetEnumerator() | (Inherited from IEnumerable.) |
![]() |
TryGetValue | Determines whether a specified value is stored at a specified key in the dictionary. |
Top