making graph/map of functions/methods calls in c# code (visual studio 2008)
Posted
by Y. Shoham
on Stack Overflow
See other posts from Stack Overflow
or by Y. Shoham
Published on 2010-04-26T08:38:48Z
Indexed on
2010/04/26
8:43 UTC
Read the original article
Hit count: 818
I have some c# projects in visual studio 2008, and I want to get graph (map? table?) of all methods calls. I want it static, not runtime (like "call stack"); any function - who calls it, and how many times, etc.
I can Find All References method after method, and copy each call to table or Graphviz file, but it will take few hours. Is there an automatic tool or plugin that can help?
© Stack Overflow or respective owner