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?
source share