Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Scripting/3.3/Variables.cs @ 11058

Last change on this file since 11058 was 10727, checked in by jkarder, 10 years ago

#2136:

  • fixed tool tips
  • added Clear() method to remove all variables present in the VariableStore
  • the script cannot be compiled and started with the shortcuts anymore if it is already running
File size: 1.1 KB
Line 
1using System.Collections;
2using System.Collections.Generic;
3using System.Dynamic;
4
5namespace HeuristicLab.Scripting {
6  public class Variables : DynamicObject, IEnumerable<KeyValuePair<string, object>> {
7    private readonly VariableStore variableStore;
8
9    public Variables(VariableStore variableStore) {
10      this.variableStore = variableStore;
11    }
12
13    public override bool TryGetMember(GetMemberBinder binder, out object result) {
14      return variableStore.TryGetValue(binder.Name, out result);
15    }
16
17    public override bool TrySetMember(SetMemberBinder binder, object value) {
18      variableStore[binder.Name] = value;
19      return true;
20    }
21
22    public bool Contains(string variableName) {
23      return variableStore.ContainsKey(variableName);
24    }
25
26    public void Clear() {
27      variableStore.Clear();
28    }
29
30    public IEnumerator<KeyValuePair<string, object>> GetEnumerator() {
31      return variableStore.GetEnumerator();
32    }
33
34    IEnumerator IEnumerable.GetEnumerator() {
35      return GetEnumerator();
36    }
37  }
38}
Note: See TracBrowser for help on using the repository browser.