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,232
  • 18
  • 69
  • 117

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
  • 44,682
  • 8
  • 70
  • 108
0

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

Michael
  • 2,910
  • 3
  • 14
  • 25
0

Consider SlimTune, an open-source .Net profiler.

Dour High Arch
  • 21,081
  • 29
  • 74
  • 89