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?
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
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