Do you have any suggestion/idea of Memory profiler for Silverlight?
+1
A:
You can use the standard memory profiling tools (memory GC and lifetime) in Visual Studio 2010 - but only the Ultimate and Premium versions. The support is only for command line profiling, so the basics go:
- Open a Visual Studio command prompt
- VSPerfClrEnv /globalsamplegclife
- VSPerfCmd -start:sample -output:somefile.vsp
- VSPerfCmd -launch:"c:\Program Files (x86)\Internet Explorer\iexplore.exe" -args:""
- VSPerfCmd -globalon
- VSPerfCmd -shutdown
- VSPerfClrEnv /off
The generated VSP will include memory statistics.
You can find more detailed information at: http://www.nachmore.com/2010/profiling-silverlight-4-with-visual-studio-2010/
Oren
2010-08-25 17:17:23
Hi Oren, thanks for your update. I am using Professional version only and looking for a better UI profiler like ANTS.
sankar
2010-08-25 17:34:18
A:
Hi sankar,
ANTS Memory Profiler 6 now includes Silverlight 4 profiling support:
http://www.red-gate.com/products/ants_memory_profiler/index.htm
(Disclaimer: I work for Red Gate and am biased as hell.)
Hope that helps!
Bart
Bart Read
2010-09-02 12:07:33