I have a console application who start two other console application (not written in C#).
Can I direct the output of the applications to the same CMD window of my application?
Or even just disable them from showing?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes to both questions – you can redirect the output and also stop them from showing.
Look at the
ProcessStartInfoclass – you pass this into the constructor of theProcessclass to ensure it starts just as you want it.