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.
-
It's not clear what you mean with "depndence of functions" and "attachment functions". Can you please be a little bit more descriptive?Daniel Hilgarth– Daniel Hilgarth2012-08-21 06:47:24 +00:00Commented Aug 21, 2012 at 6:47
-
You can generate dependency graph in Vs2010 and 2012 .see blogs.msdn.com/b/jennifer/archive/2010/05/11/…Ravi Patel– Ravi Patel2012-08-21 06:48:30 +00:00Commented Aug 21, 2012 at 6:48
-
Excuse me. it's my mistake and corrected it.Reza Nabati– Reza Nabati2012-08-21 06:52:57 +00:00Commented Aug 21, 2012 at 6:52
Add a comment
|
1 Answer
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