Is there a custom FxCop rule that will detect unused PUBLIC methods? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T05:49:28Z http://stackoverflow.com/feeds/question/71518 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/71518/is-there-a-custom-fxcop-rule-that-will-detect-unused-public-methods 5 Is there a custom FxCop rule that will detect unused PUBLIC methods? Corey Trager 2008-09-16T11:54:53Z 2009-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#71538 4 Answer by Aidan for Is there a custom FxCop rule that will detect unused PUBLIC methods? Aidan 2008-09-16T11:58:32Z 2008-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#71556 0 Answer by Matt Lacey for Is there a custom FxCop rule that will detect unused PUBLIC methods? Matt Lacey 2008-09-16T12:02:07Z 2008-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#71587 1 Answer by Ian Nelson for Is there a custom FxCop rule that will detect unused PUBLIC methods? Ian Nelson 2008-09-16T12:08:30Z 2008-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#71730 3 Answer by Keith for Is there a custom FxCop rule that will detect unused PUBLIC methods? Keith 2008-09-16T12:31:22Z 2008-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#71929 6 Answer by sixlettervariables for Is there a custom FxCop rule that will detect unused PUBLIC methods? sixlettervariables 2008-09-16T12:59:41Z 2008-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>// &lt;Name&gt;Potentially unused methods&lt;/Name&gt; WARN IF Count &gt; 0 IN SELECT METHODS WHERE MethodCa == 0 AND // Ca=0 -&gt; No Afferent Coupling -&gt; 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>