Hello community,

How can I replace the 3 parameter Evaluate-function from PythonEngine

  engine.Evaluate(expression, module, locals)

where expression is a string, module is a EngineModule and locals is a
IDictionary<string, object> by something like

  delegate object Expression(IDictionary<string, object> locals)
  Expression expr = engine.CreateLambda<Expression>(expression);
  ...
  expr(locals);

I've asked the same question a few days before, but didn't get an answer
so far. Is it not possible at all?

Thanks for any help.

Christian
_______________________________________________
Users mailing list
[email protected]
http://lists.ironpython.com/listinfo.cgi/users-ironpython.com

Reply via email to