A dictionary type represents a collection of keys and values pair of data.
The Dictionary class defined in the System.Collections.Generic namespace is a generic class and can store any data types in a form of keys and values. Each key must be unique in the collection. Before you use the Dictionary class in your code, you must import the System.Collections.Generic namespace.
Topics covered in this book
- What is Dictionary
- How to define and create a Dictionary
- How to add items to a Dictionary
- How to remove all or a single item from the Dictionary
- How to loop through all items in a Dictionary
- How to find a key or a value in a Dictionary
- How to read all keys in a Dictionary
- How to read all values in a Dictionary