我有两个项目的解决方案:
我想从Windows窗体应用程序管理控制台应用程序。
如何从Windows窗体应用程序启动/停止控制台应用程序?
任何人都可以提供示例代码或任何建议吗?
答案 0 :(得分:2)
您要找的是Process.Start
:
using System.Diagnostics;
...
Process process = new Process();
process.StartInfo.FileName = "yourexe.exe";
process.Start();
process.WaitForExit();// Waits here for the process to exit.
有关详细信息,请查看this StackOverflow link.