C#关闭word进程
foreach (System.Diagnostics.Process p in System.Diagnostics.Process.GetProcessesByName("WINWORD")) {
p.Kill();
}
05-11 14:11