I want to delete foo() if foo() isn't called from anywhere.
|
3
|
|||||
|
|
|
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) |
||||||||||||
|
|
|
NDepend will also report on potentially unused code. |
||
|
|
|
|
Bear in mind that Resharper (and probably other similar tools as well) will not highlight unused methods if the methods are marked |
||
|
|
|
|
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. |
||
|
|
|
Yes, the MZ-Tools addin has a review dead code feature. |
||
|
|
|
|
Resharper does this, and not just with methods. It also does it with using statements, variables etcetera. HTH, Kent |
||
|
|
