Track what objects are using my memory in c# app?
I've got a c# app 开发者_开发问答that uses a large amount of memory. I'd like to track down what objects are using the most memory so that I can optimize things a little more. Is there a tool that can help out with this? Something that would allow me to know what objects/variables/etc are using ram and how much?
Thanks in advance.
After looking at what I did with VS2010, you may have the Analyze
menu. If so, then you can use this to get some information that may help.
But, as this question pointed out, it is slow, and generates huge files. VS2010 .NET Memory Analysis - extremely slow
So, you will want to look at the various options and try the one that will best help you find just what you want.
精彩评论