-
Book Overview & Buying
-
Table Of Contents
Xamarin 4 By Example
By :
Profiling in computer programming area is measuring an application's behaviour by collecting values of memory usage, time complexity, CPU usage, and so on. This measurement provides us with a good analysis of the application's usage. With profiling, we can see the overall performance results of an application to a particular method's execution duration.
When we complete an application and submit it to stores, users start to download and use it.
If the application has crashes and errors or bottlenecks, users are likely to abandon it and remove it from their devices.
With this in mind, it's crucial to measure the application's memory, CPU, and network usage to find bottlenecks.
The Xamarin Profiler is a standalone application, and it's integrated with Xamarin Studio and Visual Studio to profile an application.
We need to download and install Xamarin Profiler first; we can find the installer on the Xamarin official website.
Xamarin Profiler provides us a way to profile an Xamarin...