Fix Py.SetArgv for systems that don't support GetCommandLineArgs
This commit is contained in:
Родитель
d2d3ba669f
Коммит
d8990839a8
|
@ -122,11 +122,7 @@ public static class Py
|
|||
args = Enumerable.Empty<string>();
|
||||
}
|
||||
|
||||
SetArgv(
|
||||
new[] { "" }.Concat(
|
||||
Environment.GetCommandLineArgs().Skip(1)
|
||||
)
|
||||
);
|
||||
SetArgv(new[] { "" }.Concat(args.Skip(1)));
|
||||
}
|
||||
|
||||
public static void SetArgv(params string[] argv)
|
||||
|
|
Загрузка…
Ссылка в новой задаче