我应该如何使用 IronPython 在 Windows Phone 7 或 8 中运行 python 脚本。我已尝试执行以下操作:
var ipy = Python.CreateRuntime();
dynamic test = ipy.UseFile("Test.py");
但我得到这个错误:
A first chance exception of type 'System.NotImplementedException' occurred in Microsoft.Scripting.DLL
The method or operation is not implemented.
Test.py 只包含:
print "Hello World"