vote up 5 vote down star
3

I want to delete foo() if foo() isn't called from anywhere.

flag

78% accept rate
Is there one for standard C? – Paul Hargreaves Sep 15 '08 at 18:47
PC-Lint and splint will find unreferenced methods and variables. – sixlettervariables Sep 15 '08 at 18:51

6 Answers

vote up 12 vote down check

Gendarme will detect private methods with no upstream callers. It is available cross platform, and the latest version handles "AvoidUncalledPrivateCodeRule".

FxCop will detect public/protected methods with no upstream callers. However, FxCop does not detect all methods without upstream callers, as it is meant to check in the case that your code is part of a Library, so public members are left out. You can use NDepend to do a search for public members with no upstream callers, which I detail here in this other StackOverflow answer.

(edit: added information about Gendarme which actually does what the questioner asked)

link|flag
1  
(+1) FxCop is the way to go – Keith Sep 15 '08 at 18:53
This (CA1811) will not work for all kinds of methods, e.g. static public methods. – JRoppert Sep 15 '08 at 18:56
Also it is a great tool in general – autolykos Sep 15 '08 at 20:21
@JRoppert: I think this is because it is unable to tell in the number of passes made by FxCop if it is truly unreferenced. Resharper crashes all the time for me, so using it is out of the question. Good point though. – sixlettervariables Sep 15 '08 at 21:33
I just tried FxCop. It doesn't detect unused public methods, which is what I was mainly interested in. – Corey Trager Sep 16 '08 at 11:52
show 3 more comments
vote up 3 vote down

NDepend will also report on potentially unused code.

link|flag
vote up 1 vote down

Bear in mind that Resharper (and probably other similar tools as well) will not highlight unused methods if the methods are marked public. There is no way a static code analysis tool will be able to check whether the methods of your assembly are used by other assemblies outside your solution. So the first step in weeding out unused methods is to reduce their visibility to private or internal.

link|flag
vote up 2 vote down

Well, if VS doesn't do this natively, a simple method is to right click on the method and select "find all references" . If there is only 1 reference (where it is declared) it most likely isn't used anywhere else.

link|flag
Too tedious to do it one-by-one. I was looking for a tool that would sweep through all the code. – Corey Trager Sep 16 '08 at 11:58
vote up 1 vote down

Yes, the MZ-Tools addin has a review dead code feature.

link|flag
vote up 1 vote down

Resharper does this, and not just with methods. It also does it with using statements, variables etcetera.

HTH, Kent

link|flag

Your Answer

Get an OpenID
or

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