Ray Lu
Ray Lu

Reputation: 26668

Object Memory Analysis in .NET

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.

Upvotes: 6

Views: 4845

Answers (4)

Kent Boogaart
Kent Boogaart

Reputation: 178810

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

Upvotes: 6

casademora
casademora

Reputation: 69757

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

Upvotes: 1

Beau Crawford
Beau Crawford

Reputation: 2249

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

Upvotes: 3

Quintin Robinson
Quintin Robinson

Reputation: 82375

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

What Are Some Good .NET Profilers?

Upvotes: 2

Related Questions