I have an application that consist of multiple components, each compiled into single DLL, each runs multiple thread within itself. I have a shell program that start up these components.
I am running this application on a window CE 6 environment and this is the only program (aside from those of system) on it. However, over time I see that the allocated memory usage slowly increasing when I look at the task manager window. Suspect my program may have a memory leak I do the following.
I go to a specific component and create a Timer object that runs every 30 minutes that calls the following code:
long memByte = GC.GetTotalMemory(false);
Console.Write("Heap Memory: " + (memByte/1000).ToString() + "KB");
From reading around the internet I think GetTotalMemory basically gives me the total manage memory of the system. If my program does not have a memory leak issue then I suspect overtime I would get some type of flat line when I graph out the result. Otherwise I will see a slow increase.
My question is, does GetTotalMemory actually gives me the total manage heap memory of all application or does it give only specific heap that is being used by the current component where this code is running from?
Thank you,