tags:

views:

43

answers:

2

I am writing a C# WinForms app using VS2008. Is there a way I can view all of the objects that my application has loaded into memory?

A: 

With a profiler such as the one made by Redgate, this is possible

ANTS Profiler

DarenFox
+1  A: 

There are a number of memory profilers out there. My personal favorite is Ants profiler from redgate but here are some more:

Ants

MS CLR Profiler

And also you can follow this SO link for free ones Free Profilers

mcauthorn