In C#, is there an inline shortcut to instantiate a List with only one item.
I\'m currently doing:
new List( new string[] { \"
new[] { "item" }.ToList();
It's shorter than
new List { "item" };
and you don't have to specify the type.