How do you trace/profile your .NET applications? The MSDN online help mentions Visual Studio Team (which I do not possess) and there is the Windows Performance Toolkit. But, are there other solutions you can recommend? Preferably (of course) a solution that works without changing the code (manually) and that can be integrated in Visual Studio.
10 Answers
See also this question. JetBrains dotTrace is the best .NET profiler I have found (and I have tried pretty much every one there is), because it is the only one that has low enough overhead to handle a processor-intensive application. It is also simple, accurate and well-designed - highly recommended!

- 1
- 1

- 13,960
- 7
- 36
- 42
Happy birthday:

- 102,129
- 8
- 104
- 120
-
3This gift will cost you money in 30 days :D haha – Patrick Desjardins Sep 18 '08 at 17:18
-
Actually, dotTrace3.1 is only a 10-day eval :P – MagicKat Sep 18 '08 at 17:23
-
Worth every penny, and then some. dotTrace is a superior product. – McKenzieG1 Sep 18 '08 at 17:40
I think this is the best free one: http://www.productivity-boost.com/Download.aspx
The website is german but you can just download it, the software is english.

- 443
- 1
- 4
- 8
.NET Memory Profiler is an excellent tool for profiling memory usage.

- 48,964
- 20
- 128
- 117
Our team uses EQATEC Profiler, I've found it simple and easy to use. It works without changes to the source code, but I don't think Visual Studio integration is possible.

- 213
- 2
- 8
If you are looking for something free, I use NProf. Although its pretty limited and may crash or hang on certain programs.

- 3,415
- 1
- 27
- 30
Not free, but I just had a tough issue in huge code base with streams. Visual Studio's profiler got me close, but Antz Profiler locked it down. It isn't free, but it was much less painless than setting up Visual Studio.

- 91
- 1
- 8