Is there a lint-like tool for C#? I've got the compiler to flag warnings-as-errors, and I've got Stylecop, but these only catch the most egregious errors. Are there any other must-have tools (especially for newbie C#ers like me) that point out probably-dumb things I'm doing?

link|improve this question

67% accept rate
feedback

4 Answers

up vote 10 down vote accepted

Tried FxCop? It's integrated into VS as "Code Analysis"

link|improve this answer
I don't use VS but since you got 4 upvotes in 17 minutes it probably deserves a try. Installing it now, thanks! – Ken Apr 14 '09 at 18:04
2  
It works without VS too. But VS is a great tool for .NET development. – Mehrdad Afshari Apr 14 '09 at 18:08
I think it would be pretty hard to convince me that VS (which I have tried, and disliked) is better than Emacs + 15 years of customizations. It would probably be easier to get me to change keyboard layouts! – Ken Apr 14 '09 at 20:32
2  
BTW, while you might be comfortable with writing code in Emacs, .NET development is much more than just coding. You can always have VS at hand for visual debugging and other stuff. It doesn't hurt. – Mehrdad Afshari Apr 14 '09 at 20:42
1  
Link for FxCop 10.0 (for .NET 4.0, it's in the 7.1 SDK): blogs.msdn.com/b/codeanalysis/archive/2010/07/26/… – JohnB Aug 25 '10 at 16:58
feedback

Resharper performs a fair bit of static analysis as well as doing a ton of other useful things. Currently I wouldn't code in C# without it.

As well as FxCop, Gendarme is another tool to look at (it is Mono's version of FxCop but they are different in approach and the errors that they actually find).

link|improve this answer
feedback

Gendarme for Mono is similar to FxCop

link|improve this answer
feedback

You can try .Net Reflector by Red-Gate, you can get it from here. Many useful plugins for .Net Reflector are available on CodePlex which you can get it from here.

link|improve this answer
I use Reflector all the time, but AFAICT it's just for inspecting compiled code. Is there some "show me my stupid mistakes" module I'm missing? – Ken Apr 14 '09 at 17:59
Good lord yes. I don't know what you need to do to turn it on (more like, what you've done to turn it off), but dig for it, it's terrific. – Robert Rossney Apr 14 '09 at 18:08
feedback

Your Answer

 
or
required, but never shown

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