Given this setup code:
var dict = new Dictionary<int, string>()
{
{ 1, "First" },
{ 2, "Second" },
{ 3, "Third" }
};
You may want to read the value for the entry with key 1. If key doesn't exist getting a value will throw KeyNotFoundException,...