Is there a pretty way I can change my previous code:
char[][] board = Enumerable.Repeat(Enumerable.Repeat('-', 7).ToArray(), 7).ToArray();
so that it uses multidimensional arrays instead?
E.g.
char[,] = ...
the array should represent this kind of data structure:
-------
-------
-------
-------
-------
-------
-------