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 app.exe does nothing, or finishes its work quickly (i.e. simply prints "Hello World" and returns), it will behave the way you just explained. If you want app.exe to stay open after its work is done, put some sort of completion message followed by Console.ReadKey(); in the console application.