摘要:
public static bool FindAndKillProcessByName(string name) { //Parameter check if (0 == name.Length) { return false; } //Find the named process and terminate it foreach (Process winProc in Process.GetProcesses()) { //use equals for the task in case we kill //a wrong process if (winProc.ProcessName... 阅读全文
posted @ 2013-04-08 18:49
Predator
阅读(157)
评论(0)
推荐(0)

浙公网安备 33010602011771号