示例#1
0
 public Collections()
 {
     for (int row = 0; row < 9; row++)
     {
         for (int col = 0; col < 6; col++)
         {
             atoolMatrix[row, col] = new ToolCollection();
         }
     }
 }
示例#2
0
 public Tooltype(String name)
 {
     this.Name  = name;
     this.Tools = new ToolCollection();
 }