tags:

views:

1134

answers:

4

Is there a tool or a way to find out how much memory consumed by each DLL or object in .NET? The more detail it analyzes the better. Thanks.

+2  A: 

There are some decent memory profilers.. can look at this question

What Are Some Good .NET Profilers?

Quintin Robinson
+2  A: 

.NET Memory Profiler should allow you to do that: http://memprofiler.com/

Beau Crawford
upvoted because I've used .Net memory profiler and it provided lots of detail and was very helpful in tracking down memory usage problems.
davenpcj
+5  A: 

You could try CLR Profiler which is free, or maybe the trial version of ANTS Profiler.

HTH, Kent

Kent Boogaart
+1  A: 

I always liked the dot.Trace profiler from Jetbrains (as well as Resharper)

casademora