private void refresh() { cells = new xCell[9, 9]; for (int x = 0; x < 9; x++) { for (int y = 0; y < 9; y++) { cells[x, y] = new xCell(); } } }
public void copyTo(ref xCell Cell) { Cell.value = value; Cell.source = source; Cell.error = error; }