views:

26

answers:

1

Dear ladies and sirs.

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.

I wonder how can I disable both the visualizers and prevent invocation of the ToString() method in all the debugger views in VS2008.

Thanks.

A: 

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

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

Omer Raviv