Esempio n. 1
0
 public VariableScope(VariableScope parent)
 {
     this.parent = parent;
     this.values = new Dictionary <string, object>(StringComparer.InvariantCultureIgnoreCase);
 }