Dictionary Properties
.NET Framework 3.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. |
Top