I used stackoverflow answers to figure out how to print my array to a single console line like this:
console.writeline(string.Join(", ",myArray));
My array is decimal values (it is a double array) though and it prints very ugly.
Is there a way to round my array values inside this command?