How to identify frequently accessed methods, functions, events?

  • Thread starter Thread starter Justin
  • Start date Start date
J

Justin

I am developing a windows application, which consists of few projects with
many methods, functions, events etc., Is there any "tool" available with
VS.net to find the total number of times each method, function, events are
executed?


TIA

J Justin
 
Thankyou for quick reply. Infact, I used its earlier version, NuMega for VB6
in my previous company. It had many useful features.. Presently I want only
this "functionality", so thought, there must be some free :-) tool in VS.net
itself.

J Justin
 
Justin said:
I am developing a windows application, which consists of few projects with
many methods, functions, events etc., Is there any "tool" available with
VS.net to find the total number of times each method, function, events are
executed?

I use NCover (http://www.ncover.org/) for coverage testing, but it also
gives "hit" counts so you could use that to find bottlenecks.
 
Back
Top