Skip to content

Instantly share code, notes, and snippets.

@rexcfnghk
Created April 14, 2019 10:59
Show Gist options
  • Save rexcfnghk/1f79da26ea51b11160de3bafa51c3834 to your computer and use it in GitHub Desktop.
Save rexcfnghk/1f79da26ea51b11160de3bafa51c3834 to your computer and use it in GitHub Desktop.
var list = new List<int> { 1, 2, 3 };
// Syntactic sugar of
var list = new List<int>();
list.Add(1);
list.Add(2);
list.Add(3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment