PP: Processing Time for Methods and Functions

  • Thread starter Thread starter prabhupr
  • Start date Start date
P

prabhupr

Hi Folks

Is there any tool currently available that can tell me execution time
for each of my Methods & Functions within my .NET Application.
What I'm trying to achieve is, identifying the culprit methos who
consume more memory + execution time.

If this is a wrong discussion group/board, then please excuse me.

Any help please?
 
you can turn tracing on on your development server.
Tracing will give you the information you are looking for
 
Hello,

There is an open source tool nprof originally on sourceforge and now can be
found here: http://www.mertner.com/confluence/display/NProf/Home

Brian Long has written a nice overview of profiling which can be found here:
http://www.blong.com/Conferences/DCon2003/Internals/Profiling.htm

Matt Pietrek wrote an early take on the profiling api for the MSDN mag which
can be found here: http://msdn.microsoft.com/msdnmag/issues/01/12/hood/

In the april msdn there is an article entitled Write Profilers With Ease
Using High-Level Wrapper Classes which can be found here:
http://msdn.microsoft.com/msdnmag/issues/06/04/NETProfiling/default.aspx

There are also commercial profilers available which can be found by
searching on google.
 
write better code! Are you getting errors? memory? recursion perhaps?

simply debug..usually it's misformed SQL statements
 

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