vote up 8 vote down star
4

We are using Jetbrains' dotTrace. Can anyone recommend any other profiling tools that you think are better for profiling C# Windows Forms applications?

flag

11 Answers

vote up 6 vote down check

No. I have tried pretty much every .NET profiler on the market (ANTS, vTune, OptimizeIt, DevPartner, YourKit), and in my opinion dotTrace is the best of the lot. It is one of only two profilers I have used (the other being YourKit) that has low enough overhead to handle a highly CPU-intensive application.

If and only if your application is relatively light, I could recommend ANTS Profiler. It's line-by-line stats are sometimes quite useful, but they come at a price in profiling efficiency.

link|flag
vote up 0 vote down

I've been using the free SlimTune since its recent release. Although it has a minimal interface, it is super easy to use and provides good diagnostics which have already helped me a lot. It currently supports two kinds of displays, one of which is similar to nProf. It is from the same developer as SlimDX, so I expect the tool to become even better in the short term.

EDIT: As far as I know, it does not support memory profiling yet.

link|flag
vote up 2 vote down

I have used the EQATEC Profiler. It is free and is a code profiler, not a memory profiler.

link|flag
vote up 0 vote down

It hasn't been mentioned yet, but for memory analysis Windbg is about as thorough and low-level as you can get. Using it in combination with sos.dll is incredibly powerful, but there is a fairly steep learning curve.

It's a free tool though, and Tess Ferrandez' blog is a great place to start with it. ANTS and other profilers are much more user-friendly, but Windbg can slice and dice the managed heap like none other in my opinion.

link|flag
vote up 2 vote down

@[mckenzieg1]

I know it's a test coming from Red Gate (ANTS), but http://www.simple-talk.com/community/blogs/jcrease/archive/2008/09/16/69546.aspx talks about the significant speed improvements with ANTS v4. Therefore, is your experience with just v3?

(and why is the username not hyperlinking?)

link|flag
vote up 2 vote down

We've got on really well with AQTime. The great thing from our point of view is that it does the unmanaged parts of our code too.

link|flag
vote up 0 vote down

nProf is a good tool if you're looking for something free. It's kind of finicky at points, and a little buggy, but if you're on a tight budget, it'll do the job.

link|flag
How do you use it? Where can I find some documentation? – Germstorm Jul 17 at 7:23
Seems like recently nProf has had some life breathed into it. It's been pretty stagnant for the last few years. Still no documentation though. I think your best bet is to just try it out. It's a pretty slim program, without a lot of options. Basically you just start your program from the profiler, and it records how long each method takes to run. When are are done running your program, it gives you totals of how long was spent in each method. Best thing to do is to run through the slow parts of your application, even just one action at a time, and see where it's slow. – Kibbee Jul 17 at 23:34
vote up 1 vote down

I am very happy with RedGate ANTS. The only other one I tried was the one that comes with Visual Studio Team, and it sucks.

link|flag
vote up 4 vote down

For memory profiling you have both the free CLR profiler and the commercial .NET memory profiler. Both are excellent but the latter is a bit more polished.

link|flag
vote up 2 vote down

Ants Profiler just released version 4.
We use it, and are quite happy with it. There's a 14 day trial to evaluate (as is true for most offerings).

link|flag
vote up 1 vote down

We use DotTrace like you, but in the past we used Ants Profiler by RedGate. It is a nice tool also.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.