Finding Memory Leak

G

Guest

I read a some doumentation about avoiding Memory Leaks. Like use the Dispose
method properly, creating and using variable and objects in a certain way.
However, my question is how do I find Memory leaks in my program or how do I
know which objects are not properly handled by the Garbage Collector.

Thanks in adavance, anything would be great.

--Rythm
 
W

W.G. Ryan - MVP

Using perfmon counters you can track garbage collections which might be of
use. Google on Perfmon & .NET and there are quite a few resources
 
G

Guest

Thanks will try that

W.G. Ryan - MVP said:
Using perfmon counters you can track garbage collections which might be of
use. Google on Perfmon & .NET and there are quite a few resources
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Memory leak 1
Memory Leak 2
I think I have memory leaks 2
Dispose Overkill? 7
Close - No Dispose - Memory Leak? 12
Help Fixing a Memory Leak 20
How turn off memory leak dumping? 3
memory problems 1

Top