T Thore Berntsen May 1, 2005 #1 Does anyone know if there exists a profiling tool for .NET CF? Thore Berntsen
D Daniel Moth May 1, 2005 #2 Unfortunately no. You can run your code against the desktop framework and use tools to gain an insight into object graphs etc but nothing that runs directly on the device (and hence directly against the Compact Framework implementation). The closes you'll get is performance counters enabled via the registry. Check out the links from here: http://www.danielmoth.com/Blog/2004/08/performance-statistics-for-netcf-apps.html Cheers Daniel
Unfortunately no. You can run your code against the desktop framework and use tools to gain an insight into object graphs etc but nothing that runs directly on the device (and hence directly against the Compact Framework implementation). The closes you'll get is performance counters enabled via the registry. Check out the links from here: http://www.danielmoth.com/Blog/2004/08/performance-statistics-for-netcf-apps.html Cheers Daniel
T Thore Berntsen May 10, 2005 #3 Thank You that was useful. Do You know if it's possible to query these values at runtime. Do You know how I can read the current CPU load? Thore Berntsen
Thank You that was useful. Do You know if it's possible to query these values at runtime. Do You know how I can read the current CPU load? Thore Berntsen
D Daniel Moth May 15, 2005 #4 If you followed the links from my blog you would have come across this (for CF 2.0): http://blogs.msdn.com/scottholden/archive/2004/12/27/332998.aspx For CF 1.0 you can read them yourself once the application terminates. An example is this: http://vault.netcf.tv/VaultService/...manceMonitor.cs&version=1&includedversions=20 (guest, guest) Cheers Daniel
If you followed the links from my blog you would have come across this (for CF 2.0): http://blogs.msdn.com/scottholden/archive/2004/12/27/332998.aspx For CF 1.0 you can read them yourself once the application terminates. An example is this: http://vault.netcf.tv/VaultService/...manceMonitor.cs&version=1&includedversions=20 (guest, guest) Cheers Daniel