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 are just wanting the console window to stay open, you could run it with something like this command:
System.Diagnostics.Process.Start( @"cmd.exe", @"/k c:\path\my.exe" );