Is there a custom FxCop rule that will detect unused PUBLIC methods? - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T05:49:28Zhttp://stackoverflow.com/feeds/question/71518http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/71518/is-there-a-custom-fxcop-rule-that-will-detect-unused-public-methods5Is there a custom FxCop rule that will detect unused PUBLIC methods?Corey Trager2008-09-16T11:54:53Z2009-01-15T13:35:12Z
<p>I just tried FxCop. It does detect unused private methods, but not unused public. Is there a custom rule that I can download, plug-in that will detect public methods that aren't called from within the same assembly?</p>
http://stackoverflow.com/questions/71518/is-there-a-custom-fxcop-rule-that-will-detect-unused-public-methods/71538#715384Answer by Aidan for Is there a custom FxCop rule that will detect unused PUBLIC methods?Aidan2008-09-16T11:58:32Z2008-09-16T11:58:32Z<p><a href="http://www.ndepend.com/" rel="nofollow">NDepend</a> is your friend for this kind of thing</p>
http://stackoverflow.com/questions/71518/is-there-a-custom-fxcop-rule-that-will-detect-unused-public-methods/71556#715560Answer by Matt Lacey for Is there a custom FxCop rule that will detect unused PUBLIC methods?Matt Lacey2008-09-16T12:02:07Z2008-09-16T12:24:32Z<p>This might be helpful (depending on what you're doing - I assume that the methods are covered by tests if in a library.):</p>
<p><a href="http://www.truewill.net/myblog/index.php/2008/01/27/detecting_unused_methods_in_c" rel="nofollow">http://www.truewill.net/myblog/index.php/2008/01/27/detecting_unused_methods_in_c</a></p>
http://stackoverflow.com/questions/71518/is-there-a-custom-fxcop-rule-that-will-detect-unused-public-methods/71587#715871Answer by Ian Nelson for Is there a custom FxCop rule that will detect unused PUBLIC methods?Ian Nelson2008-09-16T12:08:30Z2008-09-16T12:08:30Z<p>How would it know that the public methods are unused?</p>
<p>By marking a method as public it can be accessed by any application which references your library.</p>
http://stackoverflow.com/questions/71518/is-there-a-custom-fxcop-rule-that-will-detect-unused-public-methods/71730#717303Answer by Keith for Is there a custom FxCop rule that will detect unused PUBLIC methods?Keith2008-09-16T12:31:22Z2008-09-16T12:31:22Z<p>If a method is unused and public FxCop assumes that you have made it public for external things to access.</p>
<p>If unused public methods lead to FxCop warnings writing APIs and the like would be a pain - you'd get loads of FxCop warnings for methods you intend others to use.</p>
<p>If you don't need anything external to access your assembly/exe consider find-replacing <code>public</code> with <code>internal</code>. Your application will run the same and FxCop will be able to find the unreferenced internal methods.</p>
<p>If you do need external access find which methods are really needed to be external, and make all the rest internal.</p>
<p>Any methods you make externally visible could have unit tests too.</p>
http://stackoverflow.com/questions/71518/is-there-a-custom-fxcop-rule-that-will-detect-unused-public-methods/71929#719296Answer by sixlettervariables for Is there a custom FxCop rule that will detect unused PUBLIC methods?sixlettervariables2008-09-16T12:59:41Z2008-09-16T13:30:39Z<p>Corey, my answer of using FxCop had assumed you were interested in removing unused private members, however to solve the problem with other cases you can try using <a href="http://www.ndepend.com/" rel="nofollow">NDepend</a>. Here is some CQL to detect unused public members (adapted from an article listed below):</p>
<pre><code>// <Name>Potentially unused methods</Name>
WARN IF Count > 0 IN SELECT METHODS WHERE
MethodCa == 0 AND // Ca=0 -> No Afferent Coupling -> The method
// is not used in the context of this
// application.
IsPublic AND // Check for unused public methods
!IsEntryPoint AND // Main() method is not used by-design.
!IsExplicitInterfaceImpl AND // The IL code never explicitely calls
// explicit interface methods implementation.
!IsClassConstructor AND // The IL code never explicitely calls class
// constructors.
!IsFinalizer // The IL code never explicitely calls
// finalizers.
</code></pre>
<p>Source: <a href="http://codebetter.com/blogs/patricksmacchia/archive/2008/02/15/code-metrics-on-coupling-dead-code-design-flaws-and-re-engineering.aspx" rel="nofollow">Patrick Smacchia's "Code metrics on Coupling, Dead Code, Design flaws and Re-engineering</a>. The article also goes over detecting dead fields and types.</p>
<p><em>(EDIT: made answer more understandable)</em></p>