Finding Memory Leak

  • Thread starter Thread starter Guest
  • Start date Start date
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
 
Using perfmon counters you can track garbage collections which might be of
use. Google on Perfmon & .NET and there are quite a few resources
 
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
 
Back
Top