What tool would you recommend for finding code duplicates in C# code?
|
closed as not constructive by martin clayton, gnat, Jean-Bernard Pellerin, kolossus, gaige May 2 at 3:28
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
I know of tool called Simian but I have never actually had a chance to use it. I remember that CruiseControl.NET can display reports from Simian. Also, Team City continuous integration server from JetBrains seems to have duplicate detection functionality. |
|||||
|
|
I've been working on a Resharper plugin for dealing with code clones. It scans your code, searching for sections that can be replaced by an existing method call. A section can be a whole method or just a part of a method. When it finds one, the lightbulb pops up and offers to replace said section with a call to the existing method.
I call it AgentRalph. At this point it's not ready for production use, but I've been making a lot of progress and hope to make a release soon. |
|||||||||
|
|
The new version of DevExpress CodeRush has a feature called "Duplicate Detection and Consolidation". http://devexpress.com/Products/Visual_Studio_Add-in/Coding_Assistance/duplicate_code.xml Has both a visual studio add-in and also a separate UI tool where you can scan code outside of visual studio Edit:
CodeRush's Duplicate Detection has been known to operate at up to 17 times the speed of the Visual studio version. It works on code which is functionally equivalent but structurally unique. There is more information on this blog post by Mark Miller |
||||
|
|
|
There is also CCFinder. I found out about it via Richard Banks Blog Detecting Duplicate Code Kudos goes to Richard |
|||||
|
|
If you are not afraid of command line tools, Duplo is a free small application for detecting code duplicates |
|||
|
|
|
Clone Detective for Visual Studio looks promising, although I have had troubles getting it installed. |
|||
|
Clone detection is now a part of Visual Studio 2012. You can select a chunk of code and look for duplicates or do solution wide detection work, where it will look for clones of 10 lines or more. |
|||||||||||
|
|
I tried Atomiq (http://getatomiq.com/) and it works pretty well. It has a Visualization Wheel that represents results in the form of a wheel showing dependencies. It's cheap ($30) as well. |
|||
|
Atomiq is a pretty nice commercial tool which has a good GUI (and it supports many languages). Simian on the other hand is cheaper or even free for non-commercial and Open Source projects. |
|||
|
|
|
The tool NDepend comes with an open-source tool dedicated for finding code duplicate in .NET code base. The implementation of this open-source tool is based on NDepend.API I wrote a blog post showing a case study of this code duplicate tool: An Original Algorithm to Find .NET Code Duplicate To try this tool on your code, just download the time-limited trial of NDepend, register it by starting VisualNDepend.exe and then start NDepend.PowerTools.exe Disclaimer: I am one of the developers of NDepend |
|||
|
|
|
Our CloneDR is an industrial-strength tool for finding clones across large source code bases, driven by the syntax of the programming langauge. It can find clones in many languages, including C#, Java, C++ and PHP. There are examples of clone detection runs at the link, including one on the C# version of Hibernate (NHibernate). |
||||
|
|

