Ejemplo n.º 1
0
 public Structure(StrucOperation operation, StrucType type, Constructor.dbTyp varType, string name, params int[] lengths)
 {
     Operation = operation;
     Type      = type;
     Name      = name;
     VarType   = varType;
     Lengths   = lengths;
 }
Ejemplo n.º 2
0
 public Structure(StrucOperation operation, StrucType type, Constructor.dbTyp varType, string name, string customType)
 {
     Operation  = operation;
     Type       = type;
     VarType    = varType;
     Name       = name;
     CustomType = customType;
 }
Ejemplo n.º 3
0
 public Structure(StrucOperation operation, StrucType type, Constructor.dbTyp varType, Expression value, string name, int[] lengths)
 {
     Operation = operation;
     Type      = type;
     Name      = name;
     Value     = value;
     VarType   = varType;
     Lengths   = lengths;
 }
Ejemplo n.º 4
0
 public Structure(StrucOperation operation, StrucType type, string name)
 {
     Operation = operation;
     Type      = type;
     Name      = name;
 }