Beispiel #1
0
 public Identifier(string name, IdentUses identUse, IdentTypes identType)
 {
     Name      = name;
     IdentUse  = identUse;
     IdentType = identType;
 }
Beispiel #2
0
 public Variable(string name, IdentUses identUse, IdentTypes identType, object value) : base(name, IdentUses.VARS, identType)
 {
     Value = value;
 }