I would like to see each and every function performance
and the memory allocated to it.
so that i can make my function run faster in c#.
Is there any such type of profile is there to watch out the memory allocated to each function?
I would like to see each and every function performance and the memory allocated
Share
CLR profiler
One of the important factors for performance degradation in .NET code is memory consumption. Many developers just concentrate on execution time to determine performance bottle necks in a .NET application. Only measuring execution time does not clearly give idea of where the performance issue resides.
The execution time can be clearly viewed
here is the link where you can find complete details …
hope this helps …