Any decent C# profilers out there?

.net, c#, profiler, profiling

Solution

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

Problem

I need a C# profiler. Although I'm not averse to paying for one, something which is free or at least with a trial version would be ideal since it takes time to raise a purchase order. Any recommendations?

Original source

Related problems