I\'m looking for a quick way to create a list of values in C#. In Java I frequently use the snippet below:
List l = Arrays.asList(\"test1\",\"test2
You can drop the new string[] part:
new string[]
List values = new List { "one", "two", "three" };