I am using BeginInvoke to start a delegate, but the issue is I cannot debug in the method invoked through BeginInvoke. When a breakpoint is set inside the method, the IDE pauses (usually), then once the breakpoint is hit and a continue is attempted (F10 or F11), the debugger hangs.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
The most likely cause for the hang is an implicit property or
When the debugger implicitly or explicitly evaluates functions it does so on a hijacked thread in the CLR. This thread is not the thread on which you are currently debugging and all other threads are suspended during this operation. Hence if any of the The debugger effectively executes methods in the debugger window synchronously from the UI thread and consequently it locks Visual Studio as well. |
|||||
|