How to get statistics on CPU and memory usage in Windows Phone 7?
Well, any statistics on a particular WP7 device would be helpful.
You can get IN CODE memory information from Advanced Device Properties .Values of interest:
DeviceExtendedProperties.GetValue("DeviceTotalMemory"); DeviceExtendedProperties.GetValue("ApplicationCurrentMemoryUsage"); DeviceExtendedProperties.GetValue("ApplicationPeakMemoryUsage");
All this for how long.
Unfortunately, processor information is currently unavailable.
You can enable counters using:
Application.Current.Host.Settings.EnableFrameRateCounter = true; Microsoft.Phone.Shell.SystemTray.IsVisible = false;
There is a good article on how to read Jeff Wilcox's date .
Windows Phone 7. , DLL. .
Source: https://habr.com/ru/post/1769413/More articles:Playing iPhone Movies via TV-Out - iphoneRetraining for a program - finding object-oriented design books - javaAlternative OverLibWrapper to display tooltips in ASP.NET - c #Как определить количество бит в шаблоне, не являющемся интегральным постоянным параметром? - c++Какая разница между void * и id? - objective-cWhen I include files in PHP, does it give me a blank screen? - includeC # using bitwise XOR for exchange - c #Javascript OOP library for client and server js (node.js) - javascriptHow to configure advanced options in mod_rewrite - .htaccessFunction declaration / function definition - c ++All Articles