views:

17

answers:

1

Is there a tool that allows me to profile the memory usage for my Windows Mobile Application.

My app has a section of code that is right up against the limit of the total memory. I have tried to setup my code so that the references to large objects go out of scope before new references are needed.

But I need a way to see if it is working.

So... any one know a way to do this (on Windows Mobile 5).

+1  A: 

Have you looked at the NetCF CLR Profiler, which is part of the CF 3.5 PowerToys? It provides history of all object allocations, their sizes, owners, deallocations, etc.

EDIT

Usage of the profiler is outlined here.

ctacke