Does anyone know of any good tools to detect memory leaks on the Windows phone 7.5 platform?
相关问题
- gRPC client do not dispose Channel
- An error is occur when we use navigation to move o
- localtime_r consuming some memory before program e
- binding font-awesome character in XAML to Text
- Memory leak with PyYAML
相关文章
- Working with hmacsha256 in windows store app
- WP7 Alert dialog
- Add Service Reference and Add Web Reference?
- Scrollviewer & SIP Issue (WP7.5 Mango)
- Why does this cause a memory leak in the Haskell C
- Is there any limit on number of html elements, tha
- How can I enable the memory leak tracking with Fas
- InputMethodManager holds reference to the tabhost
The built-in profiling tools are probably the best starting point.
Select: Debug > Start Windows Phone Perfomance Analysis
and select the the "Memory" option
This will help you see any memory spikes and leaks and help you drill down to the cause.
See
http://msdn.microsoft.com/en-us/library/hh202934(v=vs.92).aspx
and
http://windowsteamblog.com/windows_phone/b/wpdev/archive/2012/02/01/memory-profiling-for-application-performance.aspx
for more guidance on using the tool
I have started a series of blog posts regarding the usage of this tool :-
http://smartmobidevice.blogspot.co.uk/2012/04/windows-phone-performance-analysis-tool.html
You may also find the following blog post useful :-
http://windowsteamblog.com/windows_phone/b/wpdev/archive/2012/05/10/memory-profiling-the-heap-summary-view.aspx