up vote 8 down vote favorite
4
share [g+] share [fb]

Is it possible to list all references of an object, while debugging in Visual Studio. I am using C#. I am looking for something similar to what GC does during garbage collection.

link|improve this question

62% accept rate
feedback

2 Answers

up vote 7 down vote accepted

SOS can do this for you. It isn't integrated into the debugger, but you can attach it to your running process. You may find it helpful to use SOSAssist, rather than learning the console syntax. IIRC:

!dumpheap –type {type}
link|improve this answer
2  
+1. Also, this link helped me get started with SOS for exactly this purpose: blogs.msdn.com/ricom/archive/2004/12/10/279612.aspx – Not Sure Apr 1 '09 at 22:00
1  
Also see Tess Ferrandez's great debugging blog, e.g. blogs.msdn.com/tess/archive/2007/10/19/… – Dave Apr 1 '09 at 22:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.