4
Practically every time I try observe the contents of a variable or property of an object, I get the error below:
Function Evaluation disabled because a Previous Function Evaluation timed out. You must continue Execution to reenable Function Evaluation.
This did not happen on VS210 or VS2012, at least not until the last patch of updates.
The question is. Is there any configuration, or application setting for the Debugger Watcher to work correctly again?
Makes sense now. Since it usually occurs in an asynchronous code snippet.
– Alan R. Soares
Exactly. This can also happen if one of the frozen threads is consuming an object in Synclock, and the main thread tries to do it during debugging.
– OnoSendai