예제 #1
0
 public Table(string[,] array)
 {
     items  = array.GenericClone();
     CountX = items.GetLength(0);
     CountY = items.GetLength(1);
 }