Reputation: 1173
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
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
Reputation: 4169
it gives an analysis in: * Correctness * Library design * Localization * Naming conventions * Performance * Security
Upvotes: 1
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