C# アプリケーションから IronPython 2.x にコマンド ライン パラメータを渡すにはどうすればよいですか? Google は、Iron Python 1.x でそれを行う方法に関する結果のみを返しています。
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]);
}