Changeset 10511
- Timestamp:
- 02/25/14 15:36:29 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Scripting/3.3/UserScriptBase.cs
r10506 r10511 52 52 } 53 53 54 pr ivateclass Variables : DynamicObject {54 protected class Variables : DynamicObject { 55 55 private readonly VariableStore variableStore; 56 56 … … 66 66 variableStore[binder.Name] = value; 67 67 return true; 68 } 69 70 public bool Contains(string variableName) { 71 return variableStore.ContainsKey(variableName); 68 72 } 69 73 }
Note: See TracChangeset
for help on using the changeset viewer.