vote up 3 vote down star

I've seen similar questions for java and VB.NET, but nothing general for .NET, or specific to C# yet.

In the past, I've decorated methods with the Obsolete attribute (passing true so the compiler will issue an error, as described in MSDN).

I'd be interested in seeing the suggestions of others (beyond tools like FxCop or ReSharper).

Edit: The reason for asking about tools other than FxCop or ReSharper is that I want to make sure I'm not missing out on other tools that would be helpful.

flag

4 Answers

vote up 4 vote down check

TDD + NCover

link|flag
vote up 5 vote down

Why do you need other answers? FxCop and Resharper do the trick, especially seeing as FxCop is now integrated into VS through "Code Analysis".

link|flag
I personally llike Resharper – craigmoliver Oct 2 '08 at 14:38
I use ReSharper a ton as well. – Scott A. Lawrence Oct 2 '08 at 14:46
I <3 Resharper too! :) – Quibblesome Oct 2 '08 at 15:49
Code Analysis in visual studio is just the same as running FxCop manually? – Svish Mar 23 at 12:14
vote up 3 vote down

it appears gray in ReSharper if it's dead code (at least within the solution only)...like uncalled methods or classes or unused properties and variables

link|flag
vote up 1 vote down

Once again, I recommend AQTime. The static code analysis already does what you want (and a lot more), but the other profilers are even more useful. Worth the money, if you can afford it.

link|flag
I hadn't heard of this tool before. Thanks for the tip. – Scott A. Lawrence Oct 2 '08 at 14:48

Your Answer

Get an OpenID
or

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