Is it possible in VS2012 to support a separate thread (or a special part of it) while working with a break and a single programming step?
The reason I'm asking is because I have a thread connected to a connected hardware device that can time out if it does not receive commands from my stream. The option should be to make the connection in another process, but I do not want to do this, because this is only a debugging problem.
I am using Visual Studio 2012 with C # and WPF.
source
share