c# - Inspect all objects of all types in visual studio debugger? -
is there way , in vs 2013 debugger, inspect available objects in process? (which haven't been disposed yet gc)
for example, @ point in execution there 3 instances of type , 2 instances of type b. i'd pause execution , inspect them all
you can debugging tools such windbg - save process dump vs, open windbg , type following commands:
.symfix .reload .loadby sos clr !dumpheap -stat
you can archive similar functionality in vs using debugging plugins, such oz code, right clicking type , showing instances each type - press show instances of type button on toolbar , enter substring of types qualified name, this:

Comments
Post a Comment