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?
feedback
|
|
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. | |||
|
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. | |||||
feedback
|