C Sharp (C#) - Collections
What will be the output of this code?
var dict = new Dictionary<string, int>() { {"a", 1}, {"b", 2} };
Console.WriteLine(dict["b"]);