using System.Collections.Generic;
public static void Main()
List<string> items = new List<string>() { "foo", "boo", "john", "doe" };
Console.WriteLine(items.Aggregate((i, j) => i+ delimiter + "'" + j + "'" ));
Console.WriteLine(string.Join(','items))