What tools and techniques do you use to find dead code in .NET? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T12:42:23Z http://stackoverflow.com/feeds/question/162641 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/162641/what-tools-and-techniques-do-you-use-to-find-dead-code-in-net 3 What tools and techniques do you use to find dead code in .NET? Scott A. Lawrence 2008-10-02T14:36:18Z 2009-01-07T17:06:52Z <p>I've seen similar questions for <a href="http://stackoverflow.com/questions/162551/how-to-find-unuseddead-code-in-java-projects">java</a> and VB.NET, but nothing general for .NET, or specific to C# yet.</p> <p>In the past, I've decorated methods with the Obsolete attribute (passing true so the compiler will issue an error, as described in <a href="http://msdn.microsoft.com/en-us/library/aa664623.aspx" rel="nofollow">MSDN</a>).</p> <p>I'd be interested in seeing the suggestions of others (beyond tools like FxCop or ReSharper).</p> <p>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.</p> http://stackoverflow.com/questions/162641/what-tools-and-techniques-do-you-use-to-find-dead-code-in-net/162646#162646 5 Answer by Quibblesome for What tools and techniques do you use to find dead code in .NET? Quibblesome 2008-10-02T14:37:25Z 2008-10-02T14:37:25Z <p>Why do you need other answers? FxCop and Resharper do the trick, especially seeing as FxCop is now integrated into VS through "Code Analysis".</p> http://stackoverflow.com/questions/162641/what-tools-and-techniques-do-you-use-to-find-dead-code-in-net/162653#162653 3 Answer by cruizer for What tools and techniques do you use to find dead code in .NET? cruizer 2008-10-02T14:38:29Z 2008-10-02T14:38:29Z <p>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</p> http://stackoverflow.com/questions/162641/what-tools-and-techniques-do-you-use-to-find-dead-code-in-net/162669#162669 1 Answer by OregonGhost for What tools and techniques do you use to find dead code in .NET? OregonGhost 2008-10-02T14:40:13Z 2008-10-02T14:40:13Z <p>Once again, I recommend <a href="http://www.automatedqa.com" rel="nofollow">AQTime</a>. 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.</p> http://stackoverflow.com/questions/162641/what-tools-and-techniques-do-you-use-to-find-dead-code-in-net/162673#162673 4 Answer by Chris Canal for What tools and techniques do you use to find dead code in .NET? Chris Canal 2008-10-02T14:41:06Z 2008-10-02T14:41:06Z <p>TDD + NCover</p>