In C#, is there an inline shortcut to instantiate a List with only one item.
I\'m currently doing:
new List( new string[] { \"
Try var
var s = new List<string> { "a", "bk", "ca", "d" };