我想知道如何用C#开始这个过程:
TestFile.exe -i "c:\Program Files\My App\MyContextMenuExtension.dll" "c:\Program Files\My App\LogicNP.EZShellExtensions.dll"
如何发送两个参数toprocess?
答案 0 :(得分:1)
string arguments =
"-i \"c:\\Program Files\\My App\\MyContextMenuExtension.dll\"";
arguments += " \"c:\\Program Files\\MyApp\\LogicNP.EZShellExtensions.dll\"";
System.Diagnostics.Process.Start("TestFile.exe", arguments);
答案 1 :(得分:1)
Process.Start("TestFile.exe", @"-i \"c:\Program Files\My App\MyContextMenuExtension.dll\" \"c:\Program Files\My App\LogicNP.EZShellExtensions.dll\"");
不要忘记第一个参数中的路径。 第二个参数是你的参数,每个参数用空格分隔(如果你的参数中有空格,你需要把它们放在\“
之间