Last change
on this file since 11692 was
11135,
checked in by pfleck, 10 years ago
|
#2209
- Added Indexer to Variables for string based access to variables.
- Updated CSharpScropt code template
|
File size:
1.2 KB
|
Rev | Line | |
---|
[10566] | 1 | using System.Collections;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.Dynamic;
|
---|
| 4 |
|
---|
| 5 | namespace 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 |
|
---|
[11135] | 22 | public object this[string key] {
|
---|
| 23 | get { return variableStore[key]; }
|
---|
| 24 | set { variableStore[key] = value; }
|
---|
| 25 | }
|
---|
| 26 |
|
---|
[10566] | 27 | public bool Contains(string variableName) {
|
---|
| 28 | return variableStore.ContainsKey(variableName);
|
---|
| 29 | }
|
---|
| 30 |
|
---|
[10727] | 31 | public void Clear() {
|
---|
| 32 | variableStore.Clear();
|
---|
| 33 | }
|
---|
| 34 |
|
---|
[10566] | 35 | public IEnumerator<KeyValuePair<string, object>> GetEnumerator() {
|
---|
| 36 | return variableStore.GetEnumerator();
|
---|
| 37 | }
|
---|
| 38 |
|
---|
| 39 | IEnumerator IEnumerable.GetEnumerator() {
|
---|
| 40 | return GetEnumerator();
|
---|
| 41 | }
|
---|
| 42 | }
|
---|
| 43 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.