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