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.
 
so far I do it manually with WriteLine & Environment.TickCount
 
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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top