SyntaxFix
Write A Post
Hire A Developer
Questions
new[] { "item" }.ToList();
It's shorter than
new List<string> { "item" };
and you don't have to specify the type.