当前位置:编程学习 > C#/ASP.NET >>

c#如何通过进程名,来结束此进程

c#如何通过进程名,来结束此进程。不想用foreach 循环。
在线等。 --------------------编程问答-------------------- // 结束进程 
  System.Diagnostics.Process[] killprocess = System.Diagnostics.Process.GetProcessesByName("calc"); 
  foreach (System.Diagnostics.Process p in killprocess) 
  { 
  p.Kill(); 
  } --------------------编程问答-------------------- foreach (System.Diagnostics.Process thisproc in System.Diagnostics.Process.GetProcesses()) 

if(thisproc.ProcessName.Equals("explorer")) 

thisproc.Kill(); 

} --------------------编程问答-------------------- foreach (System.Diagnostics.Process thisproc in System.Diagnostics.Process.GetProcesses()) 

if(thisproc.ProcessName.Equals("explorer")) 

thisproc.Kill(); 

}
补充:.NET技术 ,  C#
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,