How to manually calculate Efferent Coupling (Ce) for .Net class?

If I want to manually compute the efferent link of the .Net class, should I include types from the CLR in my calculations, or only the types that I created?

+3
source share
1 answer

The NDepend tool, which calculates an efferent clutch, takes into account the third-party types used. ( Documentation here ). Here is the CQLinq code query that shows this fact:

NDepend efferent coupling

Please note that you can recalculate the efferent connection only for the types of applications used, if you want.

NDepend efferent coupling without third-party

, , ( , , , , ), .NET Fx. , System.IO System.Threading . , ( )

NDepend efferent coupling, parent namespaces

: NDepend

+1

All Articles