Can VS2010 help me find memory leaks?

Posted by Andrew Garrison on Stack Overflow See other posts from Stack Overflow or by Andrew Garrison
Published on 2010-05-28T15:08:55Z Indexed on 2010/05/28 15:11 UTC
Read the original article Hit count: 758

I'm going through the pain right now of finding memory leaks in my application using WinDbg. Luckily, I've found a few good articles that give a very good step-by-step process of how to do it. Still, it is a fairly painful process. Does VS2010 have any built in features that can ease the burden of finding a memory leak in a Silverlight application? Of course, a memory leak in .NET sounds a bit like a misnomer, but what I intend to do is to find all objects that are still referencing an object that I believe should be garbage collected.

For those that may be interested, here are some good articles on how to get started using WinDbg to find memory leaks in Silverlight:

© Stack Overflow or respective owner

Related posts about Silverlight

Related posts about debugging