using System.Collections.Generic;
public static void Main()
string[] contactName = null;
var list = new List<string>() { "one", "two" };
string x = string.Join(",", list);
Console.WriteLine(list[0]);
string newList = String.Join(",", list.Select(x => $"'{x}'"));
Console.WriteLine(newList);