I have a class that's firing off threads.
Each thread runs a method that executes an executable.
When I tried to redirect the output of those executables, you have to set UseShellExecute property to false in start info.
When you change the UseShellExecute, it messed up pretty much everything and started executing the programs one by one instead of asynchronously and returning the wrong values and such.
Why is this happening? Is there a way to redirect the output without doing this?
You can see the structure of my program in the link below although I don't think it will help any.