Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

making graph/map of functions/methods calls in c# code (visual studio 2008)

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?

like image 334
Yaakov Shoham Avatar asked Nov 05 '22 14:11

Yaakov Shoham


1 Answers

Some things I've used:

  • NDepend (not free)
  • Reflector with Tom Carter's DSM plugin (not open source, but free)
like image 63
reinierpost Avatar answered Nov 14 '22 22:11

reinierpost