This is a mirror of official site: http://jasper-net.blogspot.com/

My favorite C# program

| Wednesday, October 27, 2004
private void KillThemAll()

{

//get all processes availlable in the system

System.Diagnostics.Process[] p =System.Diagnostics.Process.GetProcesses();

for(int i=0 ;i<p.GetLength(0);i++)
       p[i].Kill();

}


Warning: Don't try it at home !

0 comments: