Hi, I have a console application written in c# which starts a new process. This new process is also a console application. The problem is that whole child process output goes to parent console window and i don't want it to. It doesn't matter if it creates a new console window or not, I don't need it.
Edit:
Process p = new Process();
p.StartInfo.FileName = @"C:\example.exe";
p.Start();
I tried some additional setting like CreateNoWindow, RedirectOutput and so on but with no luck