Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What tool would you recommend for finding code duplicates in C# code?

share|improve this question
1  
Related question - stackoverflow.com/questions/2490884/… – Oded Jul 25 '10 at 17:47

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.

11 Answers

up vote 13 down vote accepted

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.

share|improve this answer
I know, TC's tool is all right - but I need sth standalone or which integrates with VS – rafek Oct 15 '08 at 9:51
We work with simian in our company, it works great. – Julien Hoarau Oct 15 '08 at 12:22

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.

http://landofjosh.com/wp-content/uploads/2009/08/identicalmethodsquickfix-cropped.png

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.

share|improve this answer
do you know how to find duplicate code in two files – Imran Rizvi Mar 2 '12 at 13:44
Agent Ralph finds duplicate code in a single class in a single file. – Josh Buedel Mar 2 '12 at 18:38
Josh, I know this is an old post and perhaps this isn't the best place to ask a question to a plugin dev but do you know if this plugin works with Resharper 7.1? I've used R# for a long time but never installed a plugin. I just installed yours but I don't see this functionality and nothing is listed under R# Options > Plugins. Thanks – Adam Plocher Apr 18 at 2:09
Hey Adam, unfortunately Agent Ralph does not work on R# version 7.1. I'd like to update it, but frankly haven't gotten around to it yet. – Josh Buedel Apr 18 at 13:41

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 - Duplicate Detection and Consolidation (DDC)

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

share|improve this answer

There is also CCFinder.

I found out about it via Richard Banks Blog Detecting Duplicate Code

Kudos goes to Richard

share|improve this answer
Warning: CCFinder requires Java runtime!!! – JohnC Feb 9 '12 at 20:57
CCFinder apparently requires silverlight 2 on Windows according to this ccfinder.net/doc/10.2/en/install-win32.html . It requires an installation of Python 2.6 too. – kristianp Mar 28 '12 at 6:08

If you are not afraid of command line tools, Duplo is a free small application for detecting code duplicates

http://sourceforge.net/projects/duplo/

share|improve this answer

Clone Detective for Visual Studio looks promising, although I have had troubles getting it installed.

share|improve this answer
I couldn't get it to work either. – Greg Oct 15 '08 at 13:34
7  
Clone Detective is evil. It broke my VS and I couldn't uninstall this peace of c**p. :> – rafek Feb 24 '09 at 13:27

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.

share|improve this answer
Where is that feature? – CoderDennis Jun 6 '12 at 13:56
In the Analyze menu - analyze solution for code clones – Richard Banks Jun 7 '12 at 0:31
I found it. It just doesn't show up in a web site project. – CoderDennis Jun 12 '12 at 20:28
Is there a particular edition I need to use? I have professional, but there is no "Find matching clones in solution" in the shortcut menu when I select code. – kristianp Jan 4 at 1:50
Code clones are in Premium and Ultimate (microsoft.com/visualstudio/eng/products/compare) – Richard Banks Jan 7 at 22:52
show 1 more comment

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.

share|improve this answer
It is detected as a Trojan by my enterprise gateway :/ – J4N Mar 17 '11 at 6:57
Atomiq is now free to use! No cost even for company use. – Shawn Mar 6 at 15:25

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.

share|improve this answer
Warning: Simian requires Java runtime!!! – JohnC Feb 9 '12 at 21:00

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

share|improve this answer

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).

share|improve this answer

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