我知道如何使用参数在 Windows 窗体应用程序和文件中打开外部应用程序。有没有办法传递多个参数以一次打开多个文件。目前file2只是覆盖file1。我使用 Visual Studio 2017 windows 窗体 C#,谢谢。 ProcessStartInfo startInfo = new ProcessStartInfo(); startInfo.FileName = (app + ".exe"); startInfo.Arguments = file1; startInfo.Arguments = file2; Process.Start(startInfo);
1 回答
- 1 回答
- 0 关注
- 160 浏览
添加回答
举报
0/150
提交
取消