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.

C# having trouble with thread safety I suppose?

link|improve this question

45% accept rate
NOBODY has any ideas? – Joey Gfd Jul 18 '11 at 18:29
Alright we had a guy break up my sentences.... Any actual thoughts on this? – Joey Gfd Jul 18 '11 at 18:37
A guess would be cloning the process environment for each subprocess is somehow a bottleneck, Or possibly there is a limit on the stdin/out/err file handles in windows via .Net – IanNorton Jul 18 '11 at 18:39
2  
How about showing us some code? Even better, spend some time cutting it down to a very small amount of code that demonstrates the problem. – David Heffernan Jul 18 '11 at 18:59
2  
@Joey Yes you did. I don't want to spend my time picking it apart and looking for the appropriate bits. Why can't you do that with your time? And then post the code in this question so that it is self-contained. And try to cut the code down to a reasonable size. – David Heffernan Jul 18 '11 at 20:28
show 2 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.