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 animals= new List(); animals.Add("dog"); animals.Add("tiger");