المساعد الشخصي الرقمي

مشاهدة النسخة كاملة : Process termination



C# Programming
09-08-2009, 12:00 PM
Hi ,

two notepad are running one is saved as first.txt other is saved as second.txt how to kill only one process first.txt
I am using the following code which is closing all the notepad



foreach (Process pre in Process.GetProcesses())
{

if (pre.ProcessName.StartsWith("notepad"))
{


pre.Kill();


}
}



Regards,

Amit Patel