C# 中有可视化网格拓扑的控件吗?
有谁知道 ac# 工具可以可视化互连节点(例如类中的调用层次结构)?我正在寻找的可视化类型类似于 ANTS 内存分析器,当它显示内存链接时,如果有人熟悉该工具?
Does anyone know of a c# tool to visualize interconnected nodes (e.g. the call hierarchy in a class)? The sort of visualization I'm looking for is like that of the ANTS Memory Profiler when it's showing memory links if anyone is familiar with that tool?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
看看 NDepend (http://www.ndepend.com/)。除了计算代码库的各种指标之外,它还可以可视化依赖关系。提供试用版。
这是一个屏幕截图(位于 http://www.ndepend.com/Features.aspx#DependencyView)这可能就是您正在寻找的内容: http://www.ndepend.com/ Res/DiagramBoxAndArrowGraphBig.jpg
Take a look at NDepend (http://www.ndepend.com/). In addition to computing various metrics for a code base, it can also visualize dependencies. A trial edition is available.
Here is a screenshot (on http://www.ndepend.com/Features.aspx#DependenciesView) that may be what you're looking for: http://www.ndepend.com/Res/DiagramBoxAndArrowGraphBig.jpg
要完成 Matthew 对 NDepend 的回答,请查看这两篇有关 NDepend 依赖图和 NDepend 依赖矩阵的文章。图和矩阵携手合作。
以下是 2 个屏幕截图:
To complete Matthew's answer on NDepend, have a look at these 2 articles concerning NDepend dependency graph and NDepend dependency matrix. Graph and Matrix work hands in hands.
Here are 2 screenshots:
我找到的工具是 Graph#,位于 http://graphsharp.codeplex.com/ 处。它似乎非常适合绘制我所追求的节点相互依赖性。
向那些我因 ANTS 参考资料而误导的人致歉。如果有什么安慰的话,NDepend 看起来是一个非常有趣的工具。
The tool that I've found is Graph# found at http://graphsharp.codeplex.com/. It seems to work brilliantly for plotting the kind of nodal interdependencies I'm after.
Apologies to those who I mislead with the ANTS reference. If it's any consolation, NDepend looks a seriously interesting tool.