Creating a graph / displaying functions / call methods in C # code (visual studio 2008)

I have several C # projects in visual studio 2008, and I want to get a graph (map? Table?) Of all method calls. I want it to be static, not runtime (for example, a "call stack"); any function - who calls it, and how many times, etc.

I can find the method of all the links after the method and copy each call to a table or Graphviz file, but it will take several hours. Is there an automatic tool or plugin that can help?

+4
source share
1 answer

Some things that I used:

+2
source

Source: https://habr.com/ru/post/1307998/


All Articles