LastBye
LastBye

Reputation: 1173

Best tool for Code-Analyzement or Code-Review

Which code-Analyzer or Code-Review tool do you suggest ,

For Analyzing DotNet 2.0 & 3.5 code and getting

All classes , Methods , Properties , Instances , Definition , Databases & and their relation to code ,

I want to get print-ready Information about codes & projects ,

( here I dont mean a tool for testing the code & structures )

Is there anyone with similar specifications ?

Upvotes: 3

Views: 6624

Answers (4)

Ken Olofsen
Ken Olofsen

Reputation:

You should look at Atlassian Crucible for peer code review. Doing reviews online keeps them moving forward with minimal distraction for your team.

http://www.atlassian.com/software/crucible/

Upvotes: 0

Oscar Cabrero
Oscar Cabrero

Reputation: 4169

FxCop

it gives an analysis in: * Correctness * Library design * Localization * Naming conventions * Performance * Security

Upvotes: 1

davogones
davogones

Reputation: 7399

Reflector is very good and free. The Code Metrics add-in will give you good quality metrics. This may not give you the print-readiness you need.

doxygen can analyze your source code and output documentation listing all classes, namespaces, call trees, dependencies, etc. This should give you printability.

Upvotes: 3

Andrew Peters
Andrew Peters

Reputation: 11323

Maybe NDepend?

Upvotes: 7

Related Questions