Any decent C# profilers out there? [closed]

I used Ants profiler on a large c# project a year and a half ago. It really performed very nicely for what it cost, and even outperformed a few of the more expensive competitors.

It calculates cost on with almost a line by line resolution.


You can try the following:

  • nprof (free but kinda old)
  • ProfileSharp (open source)
  • .Net Memory Profiler (really good for memory leaks, there's a trial version)

Edit: Nprof has been replaced with SlimTune and works with .Net 4.0 applications