The only thing I've found is EQATEC Profiler. Are there any other profilers out there that can be used to profile .NET CF apps?
|
1
|
|||
|
|
|
Can you run it under a debugger? Can you manually interrupt (pause) it? If so, then this works. ADDED: It works on multi-threaded apps if you can take stackshots of threads, and it works no matter how large the application is. (It appears to work better on larger apps because they tend to have more problems to find.) |
||||||||||
|
|
|
From my experiences of looking a while back the EQATEC profiler was the only "minimum effort" profiling option kicking around. It becomes more suitable for proper performance testing if you use the "clear snapshot" command after the code you're interested in has been JITed and if you use the mechanism of producing files you can parse them yourself to gain a: Min, Max, Average output. Obviously that then becomes more effort than "minimum effort" though! :D |
||||
|
|
|
There's the built-in CLRProfiler: The CLRProfiler for the .Net Compact Framework (Version 3.5 of the .NET Framework): your question doesn't state which version you are targeting. It's part of the Power Toys for .NET Compact Framework 3.5 There is also the .NET Compact Framework Remote Performance Monitor:
|
||||||||||||
|
