How is it possible to initialize (with a C# initializer) a list of strings? I have tried with the example below but it\'s not working.
List opt
List mylist = new List(new string[] { "element1", "element2", "element3" });