I want to run a console application (eg app.exe) from a windows form load event. I\'v tried System.Diagnostics.Process.Start(), But after it opens app.exe, it closes it immi
If you can change the code of app.exe, just add Console.In.Read() to make it wait for a key press.
Console.In.Read()