public ArraysMultiple(string id, Expression inf, Expression sup, string dt, string dt2, ArraysMultiple elems, int row, int col, int cont) :
     base("Array")
 {
     this.id        = id;
     this.inf       = inf;
     this.sup       = sup;
     this.row       = row;
     this.column    = col;
     this.arreglos  = elems;
     this.elementos = new ArrayList();
     this.dataType  = (GetDataType(dt));
     this.auxiliar  = (GetDataType(dt2));
     this.contador  = cont;
 }
 public ArraysMultiple(string id, Expression inf, Expression sup, DataType dt, DataType dt2, ArraysMultiple elems, ArrayList datos, int row, int col, int cont) :
     base("Array")
 {
     this.id        = id;
     this.inf       = inf;
     this.sup       = sup;
     this.elementos = datos;
     this.arreglos  = elems;
     this.dataType  = (dt);
     this.auxiliar  = dt2;
     this.row       = row;
     this.column    = col;
     this.auxiliar  = dt;
     this.contador  = cont;
 }