CSharp Exe Killer |
There is the main code to do it:
private void button1_Click(object sender, EventArgs e)
{
Process[] p = Process.GetProcessesByName(textBox1.Text);
foreach (Process a in p)
{
a.Kill();
}
}
0 comments:
Post a Comment