Exemple #1
0
 public void ResetVariable(VariableStore variable)
 {
     variable.Reset();
 }
Exemple #2
0
 public VariableStore AddVariable(String name, String description, Object defaultValue, Type type)
 {
     VariableStore variable = new VariableStore(name, description, defaultValue, Type.GetTypeCode(type));
     variables.Add(name, variable);
     return variable;
 }