How to debug .net Garbage Collection?

2019-02-02 18:45发布

Is it possible to have a look at all .net objects which are collected upon calling GC.Collect()?

I need to see what objects are still in memory and not reclaimed, so I can find where reclaiming the objects should have done manual, but was forgotten by the programmer.
I don't want to call GC.Collect because someone somewhere forgot to dispose an object which blocks some handles.

2条回答
The star\"
2楼-- · 2019-02-02 19:30

I've found the best way to do this is to use windbg and the SOS (son of strike) extension. It has a rather cryptic command line but it is very powerful. It has the capability to dump the heap and divide it by the GC generational heap. Once you get past the initial learning curve, it's very easy to track what objects are alive in what portion of the heap. Here are a few web sites with examples of using SOS

EDIT OP asked about the location of sos.dll. It is included with the install of the .Net Framework. It is located at

%WINDIR%\Microsoft.Net\Framework\V2.0.50727\sos.dll

But once you have windbg loaded you don't need the full path. Just us the .loadby method.

.loadby sos mscorwks.dll

It will look for the version of sos in the same directory as the current version of mscorwks (the CLR)

查看更多
狗以群分
3楼-- · 2019-02-02 19:41

I use SciTech's Memory profiler. It's a bit complicated to use off the bat, but there are some good instructional videos. It'll let you look at which objects aren't disposed properly, in which generation they were collected. Couldn't debug memory leaks without it...

查看更多
登录 后发表回答