I want to use a collection initializer for the next bit of code:
public Dictionary GetNames() { Dictionary names =
var names = new Dictionary { { 1, "Adam" }, { 2, "Bart" }, { 3, "Charlie" } };