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
This is what helped me. I am using Xamarian Studio v5.8.1 (build 8) to write a C# program. I just had to right click "References" -> "Edit References" -> started typing "Microsoft" in the search bar -> Checked the box next to "Microsoft.CSharp" -> and clicked "OK".
I just saved and ran the program after that - everything works as expected!