Exemple #1
0
        public override void Execute(EpsInterpreter interpreter)
        {
            var dict = new EpsDictionary();

            var name = new NameOperand {
                Value = "MaxPatternCache"
            };
            var someValue = new IntegerOperand {
                Value = 42
            };

            dict.Add(name, someValue);

            interpreter.OperandStack.Push(new DictionaryOperand(dict));
        }
Exemple #2
0
 /// <summary>
 /// Constructor
 /// </summary>
 public DictionaryOperand(EpsDictionary dictionary) : this()
 {
     Dictionary = dictionary;
 }