In C#, is there an inline shortcut to instantiate a List with only one item.
I\'m currently doing:
new List( new string[] { \"
I would just do
var list = new List { "hello" };