Windows Phone 7 または 8 で IronPython を使用して 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"