Contact: aviboots(AT)netvision.net.il
40,026 questions
51,982 answers
573 users
using System; using System.Collections.Generic; class Program { static void Main() { List<string> lst = new List<string>{"c#", "c", "c++"}; foreach(var s in lst) Console.WriteLine(s); } } /* run: c# c c++ */