Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Algorithm visualization for C#

Is there any software that visualizes algorithms from code? As a flow chart of something similar. Not dependencies, inheritance and that kind of thing, but the code inside a function, or a series of functions.

like image 222
Egor Pavlikhin Avatar asked Oct 17 '09 08:10

Egor Pavlikhin


2 Answers

I don't know about inside a function, but VS2010 has sequence diagram generation from code - see here or here

Sequence diagram

like image 50
Marc Gravell Avatar answered Nov 10 '22 21:11

Marc Gravell


I think you may be looking for Code Rocket.

It provides flowchart and pseudocode visualizations of code methods and algorithms, embedded directly inside Visual Studio and Eclipse - and there is a separate Designer application for working outwith IDEs too.

like image 22
CdeeR Avatar answered Nov 10 '22 20:11

CdeeR