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
This is how you would do it.
List list1 = new List ();
Do Not Forget to add
using System.Collections.Generic;