0
Hi
Cell[, ] Cells = null;
This line doesn't make an instance. It's just a declaration.
It declares an tow dimensional array with Cell objects.
Unfortunately the variable name was choosen the same as the class.
Maybe it looks more clear the following way:
Cell[,] myCells = null;
Here is an example with another type than Cell:
int[,] a = new int[2,5];
Simon