domlao
domlao

Reputation: 16029

Tool to check code duplication in C#

I need to check if my codes have a duplication. Is there any free application for code duplication refactoring tool for C#?

Upvotes: 3

Views: 1513

Answers (3)

Paolo Tedesco
Paolo Tedesco

Reputation: 57242

I've used Simian - Similarity Analyser. It is a command line tool, but it works well.

Upvotes: 1

Tomasz Jaskuλa
Tomasz Jaskuλa

Reputation: 16033

Check :

Simian (http://www.redhillconsulting.com.au/products/simian/), based on source code. Works with plenty languages.

Clone Detective a Visual Studio plugin (http://www.codeplex.com/CloneDetectiveVS). (It uses ConQAT internally)

Upvotes: 1

Ray
Ray

Reputation: 46595

TeamCity has a duplicates search if you are already using TeamCity.

Upvotes: 1

Related Questions