예제 #1
0
 public Row(Table table, int index)
 {
     _table = table;
     _index = index;
 }
예제 #2
0
 public Cell(Table table, int row, int column)
 {
     _table = table;
     _row = row;
     _column = column;
 }