What tool would you recommend for finding code duplicates in C# code?
|
3
|
|
|
|
|
|
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. |
||
|
|
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. |
||
|
|
|
|
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. |
||
