What tools and techniques do you use to find dead code in .NET? - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T12:42:23Zhttp://stackoverflow.com/feeds/question/162641http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/162641/what-tools-and-techniques-do-you-use-to-find-dead-code-in-net3What tools and techniques do you use to find dead code in .NET?Scott A. Lawrence2008-10-02T14:36:18Z2009-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#1626465Answer by Quibblesome for What tools and techniques do you use to find dead code in .NET?Quibblesome2008-10-02T14:37:25Z2008-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#1626533Answer by cruizer for What tools and techniques do you use to find dead code in .NET?cruizer2008-10-02T14:38:29Z2008-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#1626691Answer by OregonGhost for What tools and techniques do you use to find dead code in .NET?OregonGhost2008-10-02T14:40:13Z2008-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#1626734Answer by Chris Canal for What tools and techniques do you use to find dead code in .NET?Chris Canal2008-10-02T14:41:06Z2008-10-02T14:41:06Z<p>TDD + NCover</p>