6

I want to view the heap and the objects inside them. Is there a .net monitoring and profiling tool which I could use to view heaps and memory of a asp.net and C# application?

InfoLearner
  • 14,952
  • 20
  • 76
  • 124

3 Answers3

1

I would suggest taking a look at ANTS Memory Profiler and ANTS Performance Profiler from Red Gate:

ANTS Memory Profiler:
http://www.red-gate.com/products/dotnet-development/ants-memory-profiler/

ANTS Performance Profiler:
http://www.red-gate.com/products/dotnet-development/ants-performance-profiler/

For such affordable tools, they do a fantastic job of identifying bottlenecks and memory leaks.

James Johnson
  • 45,496
  • 8
  • 73
  • 110
0

For viewing the heap, you can use CLR Profiler or the SOS Debugging Extension for the Visual Studio Debugger.

Michael
  • 2,910
  • 3
  • 15
  • 26
0

Consider SlimTune, an open-source .Net profiler.

Dour High Arch
  • 21,513
  • 29
  • 75
  • 90