c#-在.net项目/解决方案的类之间创建依赖关系图
作者:互联网
有没有编程的方法或工具可以迭代项目/程序集中的所有类并找出其他相关类?
Resharper具有类似的功能,但是我无法找到以某种易于分析的格式导出结果的方法.
我的最终目标是在类之间(每个类)之间创建依赖关系图,而不是通过项目/命名空间/等进行聚合
我的最终目标是获得类似于< Class Name>的列表:< Dependency1> ;、< Dependency N>.
- Class1: Class2, Class6, Class9
- Class2: Class1, Class4
- Class3:
- Class4: Class2, Class5
等等
更新:
我正在使用Visual Studio 2015 Premium.
解决方法:
您还可以尝试与VS2015(所有SKU,包括Premium)以及VS 2017、2013、2012、2010集成的工具NDepend(较旧的Express SKU)集成.
使用NDepend,您可以在Visual Studio C# linq queries that are compiled/executed live中进行编辑.例如,下面的代码查询显示了所有类的依赖关系:
from t in Application.Types
select new { t, t.TypesUsed, t.TypesUsingMe }
代码查询结果可以导出到图形,这样可以生成多种依赖关系图:Call Graph、Class Inheritance Graph、Coupling Graph …
I wasn’t able to find the way to export the results in some
easy-to-analyze format.
除了在Visual Studio中进行实时代码查询外,还可以通过API使用NDepend代码查询,您可以利用它来创建C#程序并以任何格式导出任何数据.
由于图形通常无法显示涉及数百个节点的复杂结构,因此NDepend还提出了Dependency Structure Matrix.
这就是我所说的复杂图.
免责声明:我为NDepend工作
标签:static-analysis,c 来源: https://codeday.me/bug/20191111/2022596.html