I use an external library (.dll), some of its methods (including constructors) write material to standard output (aka console), because it was intended for use with console applications. However, I am trying to incorporate it into my applications for Windows forms, so I would like to capture this output and display it the way I like. That is, the "status" text box in my window.
All I managed to find was ProcessStartInfo.RedirectStandardOutput, although it does not seem to meet my needs, because it is used with an additional application (.exe) in the examples. I do not run external applications, I just use the dll library.
source share