I am trying to print a jagged array with a some kind of 'constant row spacing' to make it more clear to read. Here's default output which I receive :
And I wish to receive something similar to this :
Here is my array printing code :
for (int i = 0; i < level; i++)
{
for (int j = 0; j < level; j++)
Console.Write(string.Format("{0} ", matrix[i][j].ToString("0.00")));
Console.Write(Environment.NewLine + Environment.NewLine);
}
Any quick and simple way to reach this?


\tinstead of spaces. if its still not good for large numbers use\t\t.