help
Root Question Message
File.WriteAllLines("file.csv", lines);
string csv = File.ReadAllText(filename);
string array = csv.Replace(",", "");
File.WriteAllText(filename, array);
string.Join
string.Join
, or use a for loop with a string builder and add the commas manually