Objects in memory and Size

  • Thread starter Thread starter Shloma Baum
  • Start date Start date
S

Shloma Baum

Hi,

I would like to know if there is a way or any 3rd party tool that could show
me the objects of my app loaded in memory and the size of them?

Thanks in advance
Shloma Baum
 
There's nothing I'm aware of that will show it. Why do you need it? If you
simply need heap info, that will be available in a tool with SP1, but
individual objects I've never seen (nor do I see the use).

-Chris
 
There's nothing I'm aware of that will show it. Why do you need it? If you
simply need heap info, that will be available in a tool with SP1, but
individual objects I've never seen (nor do I see the use).

But I see it:
If something goes wild in your app. (maybe you forget to dispose tome
objects) you might notice it with such a tool because it would show you
many instances of that single object where you'd expect much less of it.
You can narrow the search for the error in your code down then to
looking after that exact object!

Greetings

Markus
 
Back
Top