Esempio n. 1
0
 public Row(int sizeX)
 {
     columns = new Column[sizeX];
     for (int x = 0; x <= columns.Length - 1; x++)
     {
         columns[x] = new Column();
     }
 }
Esempio n. 2
0
        public Row()
        {
            columns = new Column[10];
            for (int x = 0; x <= columns.Length - 1; x++)
            {
                columns[x] = new Column();

            }
        }