Exemplo n.º 1
0
 public List2D(int width)
 {
     List = new GroupList <T>(width);
 }
Exemplo n.º 2
0
 public List2D(int width, int height, T defaultValue)
 {
     List = new GroupList <T>(width, height, defaultValue);
 }
Exemplo n.º 3
0
 public List2D()
 {
     List = new GroupList <T>();
 }