예제 #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();
                }
            }
        }
예제 #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();
                }
            }
        }
예제 #3
0
파일: xCell.cs 프로젝트: kuzeygh/Numbrella
 public void copyTo(ref xCell Cell)
 {
     Cell.value  = value;
     Cell.source = source;
     Cell.error  = error;
 }
예제 #4
0
 public void copyTo(ref xCell Cell)
 {
     Cell.value = value;
     Cell.source = source;
     Cell.error = error;
 }