Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a control to visualize mesh topology in c#?

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?

like image 613
Stephen Ellis Avatar asked Feb 05 '11 08:02

Stephen Ellis


1 Answers

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

like image 58
Matthew Rodatus Avatar answered Sep 23 '22 13:09

Matthew Rodatus