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?
|
feedback
|
|
Tried FxCop? It's integrated into VS as "Code Analysis" | |||||||||||||||||
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). | |||
|
feedback
|
|
Gendarme for Mono is similar to FxCop | ||||
|
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. | |||||
feedback
|