I\'m doing the example that can be found here. So I\'m trying to run IronPython in a C# script:
Python:
def hello(name):
print \"Hello \" + name
Ok. Basically, my mistake was linked to the fact that I added my IronPython assemblies from the wrong platform. Verify that:
Target Framework: 4.0
Add all the assemblies provided by IronPython in [IronPython-2.7.3]->[Platforms]->[Net40].
Thx to everyone who gave me advices.
Ps:Now, of course, there is another problem… But it's not about that topic anymore.