从 C# 到外部 exe 的更多命令行参数
我正在从 C# Windows 应用程序运行外部 exe。该exe是一个控制台窗口,我像这样传递初始命令行参数“a和b”
Process p = new Process();
p.StartInfo.FileName = "something.exe";
p.StartInfo.Arguments = "a b";
p.Start();
p.WaitForExit();
p.Close();
现在我需要在同一个exe中传递第二个参数,即应用程序“something.exe”以初始参数a和b开始执行然后下一步还需要一些输入c和d。我如何在 C# 应用程序中给出第二个输入 c 和 d。请给我一个解决方案。
I'm running an external exe from a C# windows application. The exe is an console window and i pass initial command line arguments "a and b" like this
Process p = new Process();
p.StartInfo.FileName = "something.exe";
p.StartInfo.Arguments = "a b";
p.Start();
p.WaitForExit();
p.Close();
Now i need to pass the second arguments in the same exe that is the application "something.exe" starts execution with the initial arguments a and b and then it further needs some inputs c and d in the next step. How can i give the second input c and d in the C# application. Please provide me a solution.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
明白了,伙计们
Got it guys