Created
April 14, 2019 10:59
-
-
Save rexcfnghk/1f79da26ea51b11160de3bafa51c3834 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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