Reza Nabati
Reza Nabati

Reputation: 163

Is there any Visual Studio Extension for display Function Dependency in code?

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

Answers (1)

Ravi Patel
Ravi Patel

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

Related Questions