public Variable(string name, object value, VariableType.VarType type) { this.type = type; this.name = name; Name = name; var = value; }
public void SetType(VariableType.VarType type) { this.type = type; }