A dictionary is an unordered collection of values, with each one accessed through a unique key. Let's look at the following diagram:
![](https://static.packt-cdn.com/products/9781789348668/graphics/assets/5deaf978-873e-49fb-a61c-3f9d279111e3.png)
In our diagram, we have a dictionary of pizzas (keys) with their prices (values). To find something inside a dictionary, we must look it up according to its key. Let's look at a dictionary syntax:
Dictionary<Key, Value>
Now, that we understand what a dictionary is and its syntax let's look at how we can use it by creating our first dictionary.