3
Answers

Running Applications

Andrei Arugay

Andrei Arugay

20y
2.2k
1
I have made a program that can run any application using processes. I have this simple program: Process myProcess = new Process(); public void RunProgram(string fileName) { ProcessStartInfo myInfo = new ProcessStartInfo(fileName); myProcess.ProcesStartInfo = myInfo; //or new ProcessStartInfo(fileName); myProcess.Start(); } public void CloseProgram() { myProcess.Kill(); } What happens to my myProcess object when i run many programs? How do i know which is the current process is running? Also, how to get all the name and id processes? Is myProcess object creates a collection that stores each processes run?
Answers (3)