开发者

Memory profiler for silverlight

开发者 https://www.devze.com 2023-01-13 05:49 出处:网络
开发者_Go百科Do you have any suggestion/idea of Memory profiler for Silverlight?ANTS Memory Profiler 6 now includes Silverlight 4 profiling support:
开发者_Go百科

Do you have any suggestion/idea of Memory profiler for Silverlight?


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


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:

  1. Open a Visual Studio command prompt
  2. VSPerfClrEnv /globalsamplegclife
  3. VSPerfCmd -start:sample -output:somefile.vsp
  4. VSPerfCmd -launch:"c:\Program Files (x86)\Internet Explorer\iexplore.exe" -args:""
  5. VSPerfCmd -globalon
  6. VSPerfCmd -shutdown
  7. 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/

0

精彩评论

暂无评论...
验证码 换一张
取 消