Reputation: 163
is there a extension for Visual Studio that can show the dependence of functions? There is a feature in Visual Studio [Find All References] the code that calls a function on the project throughout the show. I am looking for a tool that would show all dependency of functions in the code.
Upvotes: 3
Views: 2031
Reputation: 2191
You can generate dependancy graph using NDepend which is third party tool. New VS2010 and VS 2012 have these features. Here are some links to get you started.
http://msdn.microsoft.com/en-us/library/dd409453.aspx
How do I get a diagram of the dependencies between my C# projects
Upvotes: 1