Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Flow chart generator from source files [closed]

I'm searching for a tool that let me generate a flow chart for a given project. It is difficult understand others code by looking at code, a flow chart can be very helpful.

My Project is in VS 2010 Professional Edition.

like image 546
Sharique Avatar asked Oct 20 '10 06:10

Sharique


People also ask

Is there a flowchart generator in Visual Studio?

The Visual Studio Learning Pack has a flowchart generator, but unfortunately, it only works with the 2008 editions. What you probably actually want are called Sequence Diagrams.

How do I convert a flowchart to source code?

There are several visual programming tools that can convert flowcharts into source code. One of these tools is Flowgorithm, which translates flowcharts into Java programs. , 25+ years programming, from assembly language to constraint systems.

What is the best open source flowchart software?

Dia is an open-source flowchart software to create diagrams for GNU/Linux, MacOS X, Unix, and Windows. The software can be used to draw many types of programs, including entity relationship programs, flowcharts, network diagrams, etc. many features make it a perfect software to fulfill your needs.

Why use flowcharts?

Enjoy power of flowcharts without the endless frustration of manual chart editing. Use our smart syntax to generate optimal, beautiful and readable diagrams automatically. You focus on your process, we do the rest.


2 Answers

The Visual Studio Learning Pack has a flowchart generator, but unfortunately, it only works with the 2008 editions.

What you probably actually want are called Sequence Diagrams. This functionality is built into VS 2010 Ultimate Edition.

You just right-click inside a method and select “Generate the sequence diagram” from the pop up menu. sequence diagrams

like image 122
Paul McMillan Avatar answered Oct 21 '22 05:10

Paul McMillan


ReSharper has a Call Tracking feature that can display incoming and outgoing calls sequenced in an interactive, graphical tree view.

alt text

It also has a similar feature for Value Tracking that displays data flows.

alt text

like image 37
Ray Avatar answered Oct 21 '22 07:10

Ray