views:

631

answers:

3

Is there a tool I could use for profiling (memory) a .NET compact framework 3.5 application (Windows Mobile)?

Thanks!

+2  A: 

Equatec supports .NET CF 3.5

Amit G
Thanks, but I was looking for a memory profiler: "The EQATEC Profiler is a code profiler, not a memory profiler. So it's all about making your app run faster, not about tracking objects and memory."
splattne
Dude, I know you didn't answer his question, but I've been looking for one of those for months! Thank you, thank you, thank you.
Chris Brandsma
you're welcome :)
Amit G
+4  A: 

Use the Remote Performance Monitor that comes with Studio. It gives snapshots of the GC heap, traceable roots and much more.

ctacke
A: 

The CLR Profiler also comes with the CF-SDK, and allows to view the heap of a process. In contrast to Remote Performance Monitor it doesn't crash all the time ;-)

Bob
The CLR Profiler always shows an error message saying "invalid parameter 'index'" when trying to download the heap dump. Does anyone have a solution?
Christian Schwarz