I have problems using the class from Redirecting standard input of console application
I can execute the Console Application
var proc = new ConsoleAppManager("calc.exe");
proc.ExecuteAsync();
but how can I receive the output from the Console Application? I think I have to use the StandartTextReceived Event but I do not know how exactly. Can somebody give me a sample code for receiving the output in a RichTextBox?
You indeed need to subscribe to that
StandartTextReceived
Event. Here is an example how you can do that from a button_click event: