Testing the speed of an application.

  • Thread starter Thread starter Nick
  • Start date Start date
N

Nick

I'm sure there is a way.
Any suggestions. I would like to test how much processing time a certain
function takes to complete and lest say modify that funtion and compare
the speed.

Thanks in advance.
Nick Z.
 
Compuware devpartner community edition profiler is free - it integrates into VS.NET, it shows you : the average number of microseconds each call took, and what percentage of the total time spent in the function was spent in each call, and it highlights the highest percentage (the slowest line of code in any particular function) in red - which is a great help to optimization.
download it from www.compuware.com.
 
looks interesting, but can't find it ....
could you show us a more precise link ?

Beeeeeeeeeeeeves said:
Compuware devpartner community edition profiler is free - it integrates
into VS.NET, it shows you : the average number of microseconds each call
took, and what percentage of the total time spent in the function was spent
in each call, and it highlights the highest percentage (the slowest line of
code in any particular function) in red - which is a great help to
optimization.
 
Back
Top