I just read a friend on the Internet about the redirection console output Article It was mainly implemented using the setout () method. I suddenly remembered a project created in February. At that time, there was a need to implement the redirection output of the console, the first reaction is to use pipestream similar to that in Java. Unfortunately, it seems that pipestream is not in C. No way, I can only chew on msdn. At that time, the first method was used by xupc friends. Since the time relationship is not carefully investigated, only another method is available. Use a method to steal a host for reference only Process = New Process ();
Process. startinfo. useshellexecute = False ;
Process. startinfo. redirectstandardoutput = True ;
Process. startinfo. filename = " F:/netprojects/leleapplication4/bin/debug/consoleapplication4.exe " ;
Process. Start ();
Streamreader SR = Ocess. standardoutput;
String Strinfo;
While (Strinfo = Sr. Readline ()) ! = Null ) {
This. Richtextbox1.appendtext (strinfo );
This. Richtextbox1.refresh ();
}
The thread processes thisCode....