I'm a newbie in this place and starter with C# mobile. Now , I'm working on C# handheld device platform. So , I have some question to ask about how to get the memory usage. I have try GC.GetTotalMemory() and get the allocated memory that the GC used. But , Can I use this to estimated that how much my application was allocated the memory. I suppose that it may be but not actual correct. Then I've try google to searching for any reference or class or anything to use for checked the memory on windows CE but I've found only in another platform that not supported with the thing I'm doing.
Thanks in advance , Stoper
Apologize for that I gone away from this post.
I'm really thank you to anybody who've answer my question and watch on this post.
Now , I got all that I need by implement the "OpenNetCF" reference in my project.
Thanks again ;)
GlobalMemoryStatus
rather inaccurate on my Windows CE 6 device. The available virtual, available physical, and memory load values would jump around as I continued to load more images into memory. Sometimes the values would be higher then before the image was loaded, sometimes lower, even though I was loading images (all images were kept loaded). – Homegrown