I have a process that starts exe:
Process pr = new Process(); pr.StartInfo.FileName = @"wput.exe";
etc.
I want to be able to pause and stop this process. Are there any events that I can do to achieve this. I have several processes running in my application, each of which has its own thread. I was looking at pausing threads, but that would not give me the result I want.
source share