Reading stdout in C#

  • Thread starter Thread starter Ray Mitchell
  • Start date Start date
R

Ray Mitchell

I would like to be able to read stdout from a command-line process I start
from C#. Any suggestions/samples would be appreciated.

Thanks,
Ray Mitchell
 
Ray Mitchell said:
I would like to be able to read stdout from a command-line process I start
from C#. Any suggestions/samples would be appreciated.
The Process class you create when you start the cmdline process has a member
StandardOutput which you can use to read from the processes stdout.
 
Back
Top