Dictionary
Dictionaries map keys to values and can store heterogeneous value types.
- Instantiation
| Method | Description |
|---|---|
dict.Value(key) | Get or set the value for key. |
dict.ContainsKey(k) | Returns True if k exists. |
dict.Remove(k) | Deletes entry with key k. |
dict.Keys | Returns an array of all keys. |
dict.Items | Returns an array of all values. |