Re: [IronPython] replacing engine.evaluate by CreateLambda

2007-09-25 Thread Dino Viehland
IronPython and make them public. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dody Gunawinata Sent: Tuesday, September 25, 2007 12:05 AM To: Discussion of IronPython Subject: Re: [IronPython] replacing engine.evaluate by CreateLambda Why not use CreateMethod instead of CreateLambda?

Re: [IronPython] replacing engine.evaluate by CreateLambda

2007-09-25 Thread Dody Gunawinata
Why not use CreateMethod instead of CreateLambda? Dody G. On 9/25/07, Christian Schmidt <[EMAIL PROTECTED]> wrote: > > Hello community, > > How can I replace the 3 parameter Evaluate-function from PythonEngine > > engine.Evaluate(expression, module, locals) > > where expression is a string, mod

[IronPython] replacing engine.evaluate by CreateLambda

2007-09-24 Thread Christian Schmidt
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 by something like delegate object Expression(IDictionary locals) Expression