tagged [ironpython]

Creating an interactive shell for .NET apps and embed scripting languages like python/iron python into it

Creating an interactive shell for .NET apps and embed scripting languages like python/iron python into it I was learning python using the tutorial that comes with the standard python installation. One...

6 Oct at 14:56

Why is calling a Python lambda expression from C# not thread-safe?

Why is calling a Python lambda expression from C# not thread-safe? I define a side-effect-free (pure) lambda expression in IronPython and assign it to a C# delegate. When invoking the delegate simulta...

28 Nov at 08:41

Extending C# .NET application - build a custom scripting language or not?

Extending C# .NET application - build a custom scripting language or not? I need to build a scripting interface for my C# program that does system level testing of embedded firmware. My application co...

28 Aug at 14:20

How do I run a Python script from C#?

How do I run a Python script from C#? This sort of question has been asked before in varying degrees, but I feel it has not been answered in a concise way and so I ask it again. I want to run a script...

27 Feb at 22:3

Disabled first-chance-exception but debugger stopps within try...catch when using IronPython

Disabled first-chance-exception but debugger stopps within try...catch when using IronPython The following code should be executed without stopping the debugger: ``` var engine = Python.CreateEngine(A...

How do you use the standard library in IronPython?

How do you use the standard library in IronPython? I'll prefix this question with: No, Setting IRONPYTHONPATH is not the answer. Anyway... I was planning on using IronPython as a replacement for Power...

10 Aug at 04:13

Problems embedding IronPython in C# (Missing Compiler required member 'Microsoft.CSharp.RuntimeBinder.Binder.InvokeMember'

Problems embedding IronPython in C# (Missing Compiler required member 'Microsoft.CSharp.RuntimeBinder.Binder.InvokeMember' I'm trying to do a simple hello world to test out embedding IronPython within...

1 Oct at 18:8

IronPython invocation from C# (with SciPy) fails with ImportException: "No module named mtrand"

IronPython invocation from C# (with SciPy) fails with ImportException: "No module named mtrand" I have a python library I am trying to use via IronPython (v2.7 RC1 [2.7.0.30]) invocation from C# appli...

30 Dec at 18:13

Set style for certain controls within window from contained usercontrol

Set style for certain controls within window from contained usercontrol I have an application with multiple usercontrols that are used within certain windows. One of these usercontrols defines whether...

10 Feb at 09:53

C# 4.0: casting dynamic to static

C# 4.0: casting dynamic to static This is an offshoot question that's related to another I asked [here](https://stackoverflow.com/questions/2783616/net-4-0-dynamic-object-used-statically/). I'm splitt...