Algorithm Visualization for C #

Is there software that visualizes algorithms from code? Like a block diagram of something like that. Not dependency, inheritance, etc., But the code inside the function or a series of functions.

+7
c # visualization
source share
3 answers

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

Sequence diagram

+6
source share

I think you can search for Code Rocket .

It provides a flowchart and pseudo-code visualization of code methods and algorithms built directly into Visual Studio and Eclipse, and there is a separate constructor application for working with the IDE too.

+3
source share

AiVosto has a set of tools for visualizing source code from many languages: Visustin. It has been on the market since ancient times. I tried this for a long time, was not 100% convinced. Perhaps you want to give it a try and evaluate whether it costs you money for you.

For me, it was such that in order to understand some complex algorithm, I still have to experiment with it, having a graph that helps a little, but as an encoder, you can probably easily visualize cycles and decision trees without software. I do not want to let you use this, just try before investing, having schedules, but also useful.

+2
source share

All Articles