How do I invoke a console application from my .NET application and capture all the output generated in the console?
(Remember, I don\'t want to save the information
Use ProcessInfo.RedirectStandardOutput to redirect the output when creating your console process.
Then you can use Process.StandardOutput to read the program output.
The second link has a sample code how to do it.