如果你要kill word的話
win32.Taskkill("winword.exe");
if (Process.GetProcessesByName("WINWORD") != null)
{
foreach (Process tmp in Process.GetProcessesByName("WINWORD"))
tmp.Kill();
}