Hi
I have a program in C#. I would like to add some scripting ability, so I could run commands of the program via python. For doing that, I have implemented some interface class in the program and "passed" it to the python script using ironPython 2.0.1 (from the program itself). Basically it works, only it seems that the entire workspace of the program has been duplicated, i.e. it created a new instance of the program (all variables are in their initial state etc..), and not using the same workspace of the calling program.
What can I do to solve this?
Thanks