Exemple #1
0
        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();
                }
            }
        }
Exemple #2
0
        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();
                }
            }
        }
Exemple #3
0
 public void copyTo(ref xCell Cell)
 {
     Cell.value  = value;
     Cell.source = source;
     Cell.error  = error;
 }
Exemple #4
0
 public void copyTo(ref xCell Cell)
 {
     Cell.value = value;
     Cell.source = source;
     Cell.error = error;
 }