up vote 32 down vote favorite
18
share [g+] share [fb]

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

link|improve this question

Related question - stackoverflow.com/questions/2490884/… – Oded Jul 25 '10 at 17:47
feedback

9 Answers

up vote 10 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.

link|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
feedback

There is also CCFinder.

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

Kudos goes to Richard

link|improve this answer
feedback

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.

link|improve this answer
feedback

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

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

link|improve this answer
feedback

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

link|improve this answer
I couldn't get it to work either. – Greg Oct 15 '08 at 13:34
6  
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
feedback

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.

link|improve this answer
It is detected as a Trojan by my enterprise gateway :/ – J4N Mar 17 '11 at 6:57
feedback

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.

link|improve this answer
feedback

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

link|improve this answer
feedback

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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