Silverlight的内存分析器

时间:2010-08-25 17:11:00

标签: silverlight memory profiler

您对Silverlight的Memory Profiler有什么建议/想法吗?

2 个答案:

答案 0 :(得分:5)

ANTS Memory Profiler 6现在包括Silverlight 4分析支持:

http://www.red-gate.com/products/ants_memory_profiler/index.htm

(免责声明:我为Red Gate工作并且有点偏颇。)

希望有所帮助!

巴特

答案 1 :(得分:2)

您可以在Visual Studio 2010中使用标准内存分析工具(内存GC和生命周期) - 但只能使用Ultimate和Premium版本。支持仅用于命令行分析,因此基础知识为:

  1. 打开Visual Studio命令提示符
  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
  8. 生成的VSP将包含内存统计信息。

    您可以在http://www.nachmore.com/2010/profiling-silverlight-4-with-visual-studio-2010/

    找到更多详细信息