在C#中,可以使用Process类来监控和控制子进程。以下是一些常用的方法:
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.FileName = "notepad.exe";
Process process = Process.Start(startInfo);
process.EnableRaisingEvents = true;
process.Exited += (sender, e) =>
{
Console.WriteLine("子进程已退出");
};
process.Kill();
process.StartInfo.RedirectStandardOutput = true;
process.OutputDataReceived += (sender, e) =>
{
Console.WriteLine(e.Data);
};
process.BeginOutputReadLine();
通过以上方法,可以监控和控制子进程的运行状态,从而实现对子进程的监控和控制。