Suggestions for finding sourced of memory leaks

  • Thread starter Thread starter Gary Townsend
  • Start date Start date
G

Gary Townsend

I have a program which is basicay displays a map and a series of moving
points and refreshes everything every 5 seconds the problem i am
encountering is a steady prgression of memory usage (According to Task
Manager in Windows 2K) in an upwards progression. I am calling dispose on
all objects that expose dispose and still the progression continues. Can
anyone offer any ways in which i can try and track the memory leak down
either through the Visual Studio .NET IDE or through Performance Monitors in
Win 2K.
 
Gary Townsend said:
I have a program which is basicay displays a map and a series of moving
points and refreshes everything every 5 seconds the problem i am
encountering is a steady prgression of memory usage (According to Task
Manager in Windows 2K) in an upwards progression. I am calling dispose on
all objects that expose dispose and still the progression continues. Can
anyone offer any ways in which i can try and track the memory leak down

Allocation Profiler src
<URL:http://www.gotdotnet.com/Community/...mpleGuid=3254325d-a4aa-4bb3-aa86-c72d5104ec74>

CLR Profiler (v2.0)
<URL:http://www.microsoft.com/downloads/...52-D7F4-4AEB-9B7A-94635BEEBDDA&displaylang=en>
 
Back
Top