環境
Visual Studio 2010 SP1
ソースコード
using System; using System.Collections.Generic; namespace ConsoleApplication { class Program { static void Main(string[] args) { List<int> list = new List<int> { 1, 2, 3 }; string foo = string.Join(",", list.ToArray()); Console.WriteLine(foo); } } }