I have to refactor a large C# Application, and i found a lot of functions that are never used in the app. Is there a tool that can check for unused code, so i can remove all the unused functions?
|
5
|
|
|
|
|
|
It's a great question, but be warned that you're treading in dangerous waters here. When you're deleting code you will have to make sure you're compiling and testing often. One great tool come to mind: NDepend - this tool is just amazing. It takes a little while to grok, and after the first 10 minutes I think most developers just say "Screw it!" and delete the app. Once you get a good feel for NDepend, it gives you amazing insight to how your apps are coupled. Check it out: http://www.ndepend.com/. Most importantly, this tool will allow you to view methods which do not have any direct callers. It will also show you the inverse, a complete call tree for any method in the assembly (or even between assemblies). Whatever tool you choose, it's not a task to take lightly. Especially if you're dealing with public methods on library type assemblies, as you may never know when an app is referencing them. |
||||
|
|
|
Resharper is good for this like others have stated. Be careful though, these tools don't find you code that is used by reflection, e.g. cannot know if some code is NOT used by reflection. |
||
|
|
|
|
ReSharper does a great job of finding unused code. In the VS IDE, you can right click on the definition and choose 'Find All References', although this only works at the solution level. |
||
|
|
|
|
I use Resharper and find it very helpful, not only for finding unused code. |
||
|
|
|
|
FXCop is a code analyzer... It does much more than find unused code. I used FXCop for a while, and was so lost in its recommendations that I uninstalled it. I think NDepend looks like a more likely candidate. |
||
|
|
|
|
You want a tool that generates a |
||
|
|
|
|
I could've sworn that FxCop does that sort of thing. |
||||||
|
|
|
The truth is that the tool can never give you a 100% certain answer, but coverage tool can give you a pretty good run for the money. If you count with comprehensive unit test suite, than you can use test coverage tool to see exactly what lines of code were not executed during the test run. You will still need to analyze the code manually: either eliminate what you consider dead code or write test to improve test coverage. One such tool is NCover, with open source precursor on Sourceforge. Another alternative is PartCover. Check out this answer on stackoverflow. |
||
|
|
