开发者

Is it possible to disable both debugger visualization and ToString() invocation in all the debugger views of VS2008?

开发者 https://www.devze.com 2022-12-12 01:16 出处:网络
My project depends on a 3rd party assembly which defines debugger visualizers for some of its types. Usually this is totally fine, but some types have lazy logic, which becomes eager once the data is

My project depends on a 3rd party assembly which defines debugger visualizers for some of its types. Usually this is totally fine, but some types have lazy logic, which becomes eager once the data is observed in the debugger. And when I wish to explore the lazy behavior all this visualizers completely screw it.

开发者_如何学JAVAI wonder how can I disable both the visualizers and prevent invocation of the ToString() method in all the debugger views in VS2008.

Thanks.


As for the ToString part of the question, yes, it is.

Go to Options->Debugger-> Uncheck "Enable property evaluation and other implicit function calls".

0

精彩评论

暂无评论...
验证码 换一张
取 消