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
You haven't really asked a question, but the code should be
List optionList = new List { "string1", "string2", ..., "stringN"};
i.e. no trailing () after the list.