using System.Collections.Generic;
public static void Main()
IList<string> strList = new List<string>() { "One", "Two", "Three", "Four", "Five" };
var commaSeperatedString = strList.Aggregate((s1, s2) => s1 + ", " + s2);
Console.WriteLine(commaSeperatedString);