Dictionary Properties
.NET Framework 2.0
| Name | Description | |
|---|---|---|
| Comparer | Gets the IEqualityComparer that is used to determine equality of keys for the dictionary. |
| Count | Gets the number of key/value pairs contained in the Dictionary. |
| Item | Gets or sets the value associated with the specified key. |
| Keys | Gets a collection containing the keys in the Dictionary. |
| Values | Gets a collection containing the values in the Dictionary. |
| Name | Description | |
|---|---|---|
| System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.IsReadOnly | Gets a value indicating whether the dictionary is read-only. |
| System.Collections.Generic.IDictionary<TKey,TValue>.Keys | Gets an ICollection containing the keys of the IDictionary. |
| System.Collections.Generic.IDictionary<TKey,TValue>.Values | Gets an ICollection containing the values in the IDictionary. |
| System.Collections.ICollection.IsSynchronized | Gets a value indicating whether access to the ICollection is synchronized (thread safe). |
| System.Collections.ICollection.SyncRoot | Gets an object that can be used to synchronize access to the ICollection. |
| System.Collections.IDictionary.IsFixedSize | Gets a value indicating whether the IDictionary has a fixed size. |
| System.Collections.IDictionary.IsReadOnly | Gets a value indicating whether the IDictionary is read-only. |
| System.Collections.IDictionary.Item | Gets or sets the value with the specified key. |
| System.Collections.IDictionary.Keys | Gets an ICollection containing the keys of the IDictionary. |
| System.Collections.IDictionary.Values | Gets an ICollection containing the values in the IDictionary. |