Re: [IronPython] IP 2.7b1 - Accessing C# variables from Python

2011-01-05 Thread Pascal Normandin
Hello, Here is a simple way to call into C# variables from IronPython using a scope. var engine = IronPython.Hosting.Python.CreateEngine(); var scope = engine.CreateScope(); var dict = new Dictionarystring, string(); dict[key] = value; scope.SetVariable(hash, dict); // Calling dict from IP

Re: [IronPython] SciPy

2010-12-20 Thread Pascal Normandin
Hello, Just to add to Oleksii’s comment, I’m also in a similar situation where I’d like to make an application scriptable with any of my good Iron language friend. I have been using IronPython and IronRuby for side projects for quite some time but not embedded in an application