Launch EXE in NET

  • Thread starter Thread starter David Hoffer
  • Start date Start date
D

David Hoffer

What is the best way to launch an exe in some C# NET code, get the output of
the exe program from std out, use this output in some subsequent C# code?
(Ideally, the exe's window would be hidden from view.)

-dh
 
Thanks, I will look at this!

-dh

Jakob Christensen said:
Take a look at the System.Diagnostics.Process class which allows you to
launch an exe-file and redirect the output.

HTH, Jakob.
 
Back
Top