I have written a console application in C# and it opens up a browser on the following command.
Process webprocess = Process.Start("http://www.hashgurus.com");
However after the work finishes i want to close the browser. I am trying to kill the process but it doesnot work.
webprocess.Kill();