Memory usage

How can I determine how much memory is actually being used in the 32MB space of a compact framework application under Windows CE I need to know how close I am to exceeding the 32MB limit.



Answer this question

Memory usage

  • RobertP2

    You can use GC.GetTotalMemory() or you can P/Invoke GlobalMemoryStatus() for more details.

  • Memory usage