Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there any good free .NET profiler available?

share|improve this question

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.

9 Answers

up vote 128 down vote accepted

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.

share|improve this answer
5  
I was looking for a good .Net Profiler so long... crying tears of joy - Big, fat thank you – Xn0vv3r Jan 15 '09 at 14:44
22  
Just wanted to confirm, EQATEC is not exactly free, it is only free for personal use, not for commercial purposes, which would mean that i cant use it for professional work – Dinesh Manne Nov 19 '09 at 13:00
10  
EQATEC Profiler version 2.0 is free (BSD License). – Brian Feb 8 '10 at 21:59
12  
@Dinesh Manne: From the pricing page: Free license You have the right to install EQATEC Profiler on any number of computers and you alone may use the software for your personal and/or commercial use. – Lazlo Jul 27 '11 at 17:58
3  
Free, for 3 assemblies... – Steve May 17 '12 at 9:54
show 16 more comments

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".

share|improve this answer
Just tried SlimTune for the first time. One advantage over NProf is that you can start seeing data before your program run has terminated. For reference, it's a sampling only profiler (like NProf) for now, but it looks like the author has plans to add other options. – Chris Jan 29 '10 at 0:07
1  
+1: Very useful. For some uses, I much prefer it over Eqatec. – Brian Feb 11 '10 at 19:41
4  
I can't tell what the results mean. For instance, Function detail what does the pie graph tell us about execution? What I might like to see is how much of total execution time was spent in function A, for instance. – Limited Atonement Oct 12 '11 at 15:38
1  
Yeah, I cannot get SlimTune to produce any meaningful results. – Jon Harrop Feb 14 '12 at 16:42

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.

share|improve this answer
You're right. See edit. – Mau Jul 16 '10 at 13:22
1  
It's bug ridden. Crashes with object references exceptions and mangles my web.config file for some reason. Definitely not impressed with VS's profiler. – willem Feb 2 '12 at 12:08
Oh my. Please go and check the prices of the Premium and Ultimate versions, and revise your "free" definition :D Sorry, I just had to write it.. I know what you meant: "If your company gave you VS Ultimate, you already have a profiler". But, gosh, very not free in overall! – quetzalcoatl Apr 23 at 11:55

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.

share|improve this answer
+1 for linking to that other question... great tip! – Dan Jun 18 '12 at 12:19

NProf still works: http://nprof.sourceforge.net/Site/Description.html

share|improve this answer
It blew up almost immediately for me, whereas EQATEC profiler worked fine. – EnocNRoll Apr 14 '09 at 14:45
NProf works great, I downloaded version 0.11 from code.google.com/p/nprof – nornagon May 9 '10 at 4:32
Doesn't seem to be developed with any continuity. While not a completely dead project, there's not much life in it. – Batibix Jan 8 '11 at 16:40

You can give the CLR profiler a try.

share|improve this answer
8  
The CLRProfiler is a memory allocation profiler, not a code execution profiler (which is what most people want) – U62 Jan 15 '09 at 14:47
On top of that, its buggy. Even I fixed some of its bugs. Not very reliable. – Nayan Sep 20 '10 at 23:23
1  
And on top of that it is not intuitive nor easy to use.. – Andrei Rinea Oct 31 '10 at 20:06

Prof-it

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.

share|improve this answer
1  
Hmm... looks like there is not much recent activity on this project since 3 years. Also, it requires .NET 1.x, the Solation is for VS2003 cannot be imported in VS 2008. Too bad, the screenshots look good :-( – Christian.K Nov 25 '08 at 7:33
2  
This was a waste of time. I am surprised that it was the accepted answer. – EnocNRoll Apr 14 '09 at 14:39
It didn't work. I'm quite happy with EQATEC now. – h0b0 Aug 13 '09 at 9:18
There's even the source code on the new webpage: prof-it.sourceforge.net – alcor Oct 4 '12 at 22:48

Two good ones that are also free:

share|improve this answer

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...

share|improve this answer
-1 the question asks for a "Free" code profiler. How is this an answer if you have to pay for it. Sorry. – Francis Rodgers Apr 5 at 12:14

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