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#