Is there any good free .NET profiler available?
|
|
closed as not constructive by George Stocker♦ Aug 30 '12 at 0:48
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
EQATEC Profiler. To profile PFX-signed assemblies, please refer to the post Re-sign assembly issues as EQATEC only supports SNK files. You can use a utility to convert your PFX files to proper SNK files. |
|||||||||||||||||||||
|
|
SlimTune is a lesser known but very good .NET profiler. It does not support memory profiling, but on the performance profiling side, its author claims it has reached feature parity with NProf. My experience with it is very positive: it "just works". |
|||||||||||||||
|
|
Visual Studio 2010 Premium and Ultimate contain a decent profiler. So if you're lucky enough to be using one of those, that's free. |
|||||||||
|
|
I do a lot of work in .NET, and whenever there is a performance problem, like the application takes too long to load, or messing with third-party controls seems to take uncomfortably long, by the time somebody figures out how to fire up a profiler, this method tells what the problem is. It gets a lot of disbelief, because it's not a separate tool, it's just a way of using the IDE, and the disbelief persists even after it nails the problems. |
||||
|
|
|
NProf still works: http://nprof.sourceforge.net/Site/Description.html |
|||||||
|
|
You can give the CLR profiler a try. |
||||
|
Prof-It is an easy-to-use standalone profiler for C# that measures execution frequencies for each statement while keeping the instrumentation of the source code to a minimum. Prof-It is distributed under the terms of the GNU General Public License. Now it is mantained in SourceForge. eqatec The EQATEC Profiler is a code profiler, not a memory profiler. So it's all about making your app run faster, not about tracking objects and memory. |
|||||||||||||
|
|
Two good ones that are also free:
|
||||
|
|
|
I think Telerik has an advanced profiling tool, but it's not free. You will have to buy it after 60 days, but until then it will work fine.. It is something worth giving a try... |
||||
|