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> int_list = new List<int>(new int[] { 1, 2, 3, 4, 5,6 ,7 } ); Console.WriteLine(string.Join(',', int_list)); } } /* run: 1,2,3,4,5,6,7 */