Find out how much memory is being used by an object in C#? - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T15:01:28Zhttp://stackoverflow.com/feeds/question/60820http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/60820/find-out-how-much-memory-is-being-used-by-an-object-in-c6Find out how much memory is being used by an object in C#?unknown (yahoo)2008-09-13T20:12:51Z2008-09-13T20:31:47Z
<p>Does anyone know of a way to find out how much memory an instance of an object is taking?</p>
<p>For example, if I have an instance of the following object:</p>
<p>TestClass tc = new TestClass();</p>
<p>Is there a way to find out how much memory the instance "tc" is taking?</p>
<p>The reason for asking, is that although C# has built in memory management, I often run into issues with not clearing an instance of an object (e.g. a List that keeps track of something).</p>
<p>There are couple of reasonably good memory profilers (e.g. ANTS Profiler) but in a multi-threaded environment is pretty hard to figure out what belongs where, even with those tools. </p>
http://stackoverflow.com/questions/60820/find-out-how-much-memory-is-being-used-by-an-object-in-c/60829#608291Answer by Lars Truijens for Find out how much memory is being used by an object in C#?Lars Truijens2008-09-13T20:24:28Z2008-09-13T20:24:28Z<p>I have good experiences with <a href="http://memprofiler.com/" rel="nofollow">MemProfiler</a>. It gives you stack traces of when the object was created and all the graphs of why the object is still not garbage collected.</p>
http://stackoverflow.com/questions/60820/find-out-how-much-memory-is-being-used-by-an-object-in-c/60834#608344Answer by AlexDuggleby for Find out how much memory is being used by an object in C#?AlexDuggleby2008-09-13T20:28:38Z2008-09-13T20:28:38Z<p>If you are not trying to do it in code itself, which I'm assuming based on your ANTS reference, try taking a look at CLRProfiler (currently v2.0). It's free and if you don't mind the rather simplistic UI, it can provide valuable information. It will give you a in-depth overview of all kinds of stats. I used it a while back as one tool for finding a memory leek.</p>
<p>Download here: <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=A362781C-3870-43BE-8926-862B40AA0CD0&displaylang=en" rel="nofollow">http://www.microsoft.com/downloads/details.aspx?FamilyId=A362781C-3870-43BE-8926-862B40AA0CD0&displaylang=en</a></p>
<p>If you do want to do it in code, the CLR has profiling APIs you could use. If you find the information in CLRProfiler, since it uses those APIs, you should be able to do it in code too. More info here:
<a href="http://msdn.microsoft.com/de-de/magazine/cc300553(en-us).aspx" rel="nofollow">http://msdn.microsoft.com/de-de/magazine/cc300553(en-us).aspx</a></p>
<p>(It's not as cryptic as using WinDbg, but be prepared to do mighty deep into the CLR.)</p>
http://stackoverflow.com/questions/60820/find-out-how-much-memory-is-being-used-by-an-object-in-c/60837#608371Answer by Scott Saad for Find out how much memory is being used by an object in C#?Scott Saad2008-09-13T20:31:47Z2008-09-13T20:31:47Z<p>The <a href="http://www.microsoft.com/downloads/details.aspx?familyid=a362781c-3870-43be-8926-862b40aa0cd0&displaylang=en" rel="nofollow">CLR Profiler</a>, which is provide free by Microsoft does a very good job at this type of thing. </p>
<p>An introduction to the whole profiler can be downloaded <a href="http://www.microsoft.com/downloads/details.aspx?familyid=CD5AA57C-9CD1-45AB-AA4B-8DC586D30938&displaylang=en" rel="nofollow">here</a>. Also the Patterns & Practices team <a href="http://msdn.microsoft.com/en-us/library/ms979205.aspx" rel="nofollow">put something</a> together a while back detailing how to use the profiler.</p>
<p>It does a fairly reasonable job at showing you the different threads and objects created in those threads.</p>
<p>Hope this sheds some light. Happy profiling!</p>