Contact: aviboots(AT)netvision.net.il
40,875 questions
53,283 answers
573 users
using System; using System.Collections.Generic; class Program { static void Main() { List<int> list = new List<int>() { 2, 4, 18, 530 }; string str = string.Join(" ", list.ToArray()); Console.Write(str); } } /* run: 2 4 18 530 */