tags:

views:

68

answers:

2

I have to debug a massive program, and I was wondering if there is a way to scan the memory footprint of a running .NET application, and find a string property that is set to a certain value?

+1  A: 

You can using something like Ants Profiler from Red Gate. Ive used it a couple times and its pretty good. But really any memory profiler could probably tell you that.

Mike_G
A: 

You can use some memory profilers to take memory snapshots. Snapshots include data about the .NET instance allocations and live instances at the time the snapshot was collected.

Use Ants Profiler, Jetbrains dotTrace profiler http://www.jetbrains.com/profiler/ or Memprofiler http://www.memprofiler.com/

amazedsaint