using System; using System.Linq; public class Test { public static void Main() { double[] test = new double[] { 1, 2, 3 }; var result = String.Join(",", test.Select(x=>x.ToString()).ToArray()); Console.WriteLine(result); } }