fork download
  1. using System;
  2. using System.Linq;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. double[] test = new double[] { 1, 2, 3 };
  9.  
  10. var result = String.Join(",", test.Select(x=>x.ToString()).ToArray());
  11. Console.WriteLine(result);
  12. }
  13. }
Success #stdin #stdout 0.04s 34728KB
stdin
Standard input is empty
stdout
1,2,3