vote up 8 vote down star
3

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

flag

75% accept rate

5 Answers

vote up 6 vote down check

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|flag
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. – madgnome Oct 15 '08 at 12:22
vote up 0 vote down

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

link|flag
vote up 4 vote down

There is also CCFinder.

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

Kudos goes to Richard

link|flag
vote up 3 vote down

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|flag
vote up 3 vote down

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

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

Your Answer

Get an OpenID
or

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