views:

461

answers:

1

Is there any tool, free or commercial, that can generate flow visualization graphs for a c# method? It should be able to deal with decision points (maybe represent them as vertices) and with sequential code fragments (maybe represent them as edges). I know there are similar C/C++ and Java related questions, but I'm interested in C#.

+2  A: 

There is a commercial tool called visustin. It is capable of generating flow charts in 31 programming languages. You can get the demo version here.

erelender