如何在Linux上使用C#mono的参数启动单声道进程

时间:2017-03-24 01:39:48

标签: c# ubuntu mono

在ubuntu中,从一个应用程序(在Mono上运行的C#),我正在尝试启动第二个C#Mono应用程序并传递一些参数。

我这样做:

            Process p = new Process();
            p.StartInfo.FileName = "Mono";
            p.StartInfo.WorkingDirectory = a_working_dir;
            p.StartInfo.Arguments = "anExe.exe arg1 arg2 arg3";
            p.Start();

在运行时,我收到错误消息:

xdg-open: unexpected argument 'arg1 arg2 arg3'

我做错了什么?

0 个答案:

没有答案