3
如何將命令行參數從我的C#應用程序傳遞給IronPython 2.x? Google只返回關於如何使用Iron Python 1.x來完成的結果。將命令行參數從C#應用程序傳遞給IronPython?
static void Main(string[] args)
{
ScriptRuntime scriptRuntime = IronPython.Hosting.Python.CreateRuntime();
// Pass in script file to execute but how to pass in other arguments in args?
ScriptScope scope = scriptRuntime.ExecuteFile(args[0]);
}
解釋並解決1.x的不2.x的工作嗎? –
1.x使用scriptEngine.Sys.argv,它在2.x中被刪除了。 – Danielb