namespace System.Diagnostics;

Process ieProc = Process.Start("IExplore.exe""www.baidu.com");

Console.WriteLine("-->Hit Enter to kill {0}", ieProc.ProcessName);
Console.ReadLine();
try
{
    ieProc.Kill();
}
catch{}

 

 

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-22
  • 2021-09-29
  • 2021-11-11
  • 2022-12-23
  • 2022-02-26
猜你喜欢
  • 2021-11-30
  • 2022-12-23
  • 2021-09-18
  • 2021-12-22
  • 2021-12-25
相关资源
相似解决方案