Skip to content

Instantly share code, notes, and snippets.

@ViIvanov
Created June 3, 2016 13:25
Show Gist options
  • Save ViIvanov/d5c3511e7153aee373496c67249cc3d4 to your computer and use it in GitHub Desktop.
Save ViIvanov/d5c3511e7153aee373496c67249cc3d4 to your computer and use it in GitHub Desktop.
// Before
var dictionary1 = new Dictionary<int, string> {
{ 1, "One" },
{ 2, "Two" },
};
// After
var dictionary2 = new Dictionary<int, string> {
[1] = "One",
[2] = "Two",
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment