Profs for C#?

  • Thread starter Thread starter Joseph Kormann
  • Start date Start date
J

Joseph Kormann

In Unix, there's a utility called 'profs' which analyses running code to see
which functions and methods are called frequently and how long they're
called. Is there such a utility available for C# code?

Thanks,
Joseph
 
Hi,

Joseph said:
In Unix, there's a utility called 'profs' which analyses running code
to see which functions and methods are called frequently and how long
they're called. Is there such a utility available for C# code?

It's called a profiler and there are several, although I believe most are
only memory profilers (allocations, gcs and so forth). I recommend doing a
search, there's bound to be one or two that do what you want.

-- Pete
 
ANTS is a profiler I downloaded and evaluated. I didn't really need to use
it but in one place, so I didn't get very in depth, but it seemed to work
very well, and it was *very* clear and intuitive.

Chris
 
Back
Top