vote up 0 vote down star

A 2 part question:

  1. Are flow-charts, as tool to analyze source-code, no longer considered useful? The reason I ask this question is that if you Google for source-code to flowchart tools for Visual Studio, there are no relevant results. Also, Microsoft does not seem to have a tool for this purpose. Are people just not using flowcharts that much any more? (I find them to be a great way to document complex logic in my code).

  2. Are there any VS tools that can take .Net (C#, VB.Net) code and convert it to a flowchart? (The only tool that I found is Aviosto's Visustin, which does not provide VS integration).

  3. Any other tools that you can recommend for this purpose?

flag

63% accept rate

1 Answer

vote up 1 vote down

At the risk of answering your question with something that doesn't amount to much more than "I'm sorry, I can't answer your question" in my experience flow charts have been going out of style for the last few years, and are not really a suitable way of modelling the modern, complex relationships between objects in a multi threaded environment. This gap has been filled somewhat by the multi-diagram nature of UML especially the activity and sequence diagrams.

It looks like Visual Studio 2010 will have built in support for generating activity and sequence diagrams from code (some details here, but that was just the first result I found from a quick Google search). In the meantime, while I can't recommend anything directly since I don't use them, I imagine you'd have better luck looking for tools that reverse engineer to UML rather than flow charts. This, for example.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.