Which metrics are there and which tools exist to measure the SOLIDness of C# code? Or tools to indicate where the principles are violated most harmfully?

link|improve this question

How would an automatic tool figure out the reasons why you might want to change a class in the future? I thought automated tools gave you metrics, which you then use to speculate on which code you should review and read. And then your reviewer (human, not software) finds violations of principles. – Warren P Apr 15 '10 at 20:29
feedback

2 Answers

Scott Hanselman has an excellent article on NDepend. Also to see violation you can also use Code Analysis that comes with Visual Studio; you can use Code Analysis Policy Editor to choose rules.

link|improve this answer
feedback

You can use a static analysis tool (some are built into Visual Studio 2008 and above, professional editions and higher), or NDepend.

With NDepend, you can see how tightly coupled different classes are, what the cohesion of your codebase is like and more.

link|improve this answer
Well, that's all good, but how exactly? We use NDepend, but it's signal/noise ratio looks very low =( – Yacoder Jan 28 '10 at 9:17
The Dependency Matrix, Dependency Graph and Metric View are all great visual queues. But I can't tell you what to look for without intimate knowledge of your architecture and application. – Oded Jan 28 '10 at 9:35
feedback

Your Answer

 
or
required, but never shown

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