Re: [IronPython] IronPython / DLR Direction

2010-08-12 Thread Eyvind Axelsen
So, no response from the IPY team on this issue? Eyvind. Fra: users-boun...@lists.ironpython.com [mailto:users-boun...@lists.ironpython.com] På vegne av yngipy hernan Sendt: 10. august 2010 05:46 Til: Discussion of IronPython Emne: Re: [IronPython] IronPython / DLR Direction I complete

Re: [IronPython] Getting hold of a ClassDefinition within IronPython.Compiler.Ast.Statement.Transform()

2009-02-05 Thread Eyvind Axelsen
a parent class def you'll hit it as you're walking up the AstGenerator chtain. Or with the bodies in place you could find any ClassDefinition you want by walking down from the top ast gen. -Original Message- From: users-boun...@lists.ironpython.com [mailto:users-boun...@lists.iro

[IronPython] Getting hold of a ClassDefinition within IronPython.Compiler.Ast.Statement.Transform()

2009-02-04 Thread Eyvind Axelsen
Hi everyone, I am playing around and experimenting with new language features within IronPython (mainly out of academic interest), and I have been extending the IronPython compiler/interpreter for this purpose. However, please keep in mind that I am very new to this, and still don't quite know my

Re: [IronPython] Doubt with C# and PythonEngine

2007-11-26 Thread Eyvind Axelsen
Try this: http://labs.developerfusion.co.uk/convert/csharp-to-vb.aspx Eyvind. -Opprinnelig melding- Fra: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] På vegne av Robin Lauryssen-Mitchell Sendt: 26. november 2007 16:08 Til: 'Discussion of IronPython' Emne: Re: [IronPython] Doubt with C# an

Re: [IronPython] Is any one use IronPython in your project?

2006-11-23 Thread Eyvind Axelsen
Yes, we use it in a large C# WinForms application to build dynamic forms from XML definitions with inline python snipes. These snippets are executed at runtime and can be configured/altered by the user. Eyvind. -Opprinnelig melding- Fra: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] På ve

Re: [IronPython] Running IronPython code from C#

2006-07-12 Thread Eyvind Axelsen
1 Add a reference to IronPython.dll in your project 2 Instantiate the python engine: IronPython.Hosting.PythonEngine pe = new IronPython.Hosting.PythonEngine(); 3 Run your code: string myCode = "some python code here"; pe.Execute(myCode); HTH, Eyvind. -Opprinnelig melding- Fra: [EMA