Just go with (String.Join Method):
string joined = String.Join(",", data.ToArray());
But if it has to be LINQ, you could try:
string joinedLinq = data.Aggregate((i, j) => i + "," + j);
Just go with (String.Join Method):
string joined = String.Join(",", data.ToArray());
But if it has to be LINQ, you could try:
string joinedLinq = data.Aggregate((i, j) => i + "," + j);