In C#, is there an inline shortcut to instantiate a List with only one item.
I\'m currently doing:
new List( new string[] { \"
You can also do
new List() { "string here" };