Liker
Liker

Reputation: 2267

Block schema in Visual Studio

I am novice and work with Visual Studio, .Net, C#. Could you please help me with the following question: If I already created a solution How can I create and view its block-schema in Visual Studio? I mean diagram showing iteraction between mthods and variables etc

Upvotes: 0

Views: 2423

Answers (3)

Peter Ritchie
Peter Ritchie

Reputation: 35871

What you're describing sounds more like a "Sequence Diagram". If you have Visual STudio 2010 Ultimate, you and right-click within any method and select "Generate Sequence Diagram".

But, sequence diagrams don't show all interactions with local variables; just method (and optionally property) invocations.

Upvotes: 0

Regfor
Regfor

Reputation: 8091

When you mean creating UML Class Diagrams from code then look here:

http://msdn.microsoft.com/en-us/library/ff657806.aspx

Also there is set of videos about modeling features of Visual Studio http://channel9.msdn.com/blogs/clinted

But architecture explorer feature is present only in Visual Studio 2010 Ultimate

Also look at Visualization and Modeling Feature Pack http://msdn.microsoft.com/en-US/vstudio/ff655021.aspx

When you have no Ultimate version of VS, maybe NClass will be good free alternative for you in this case.

Upvotes: 1

dmytro.s
dmytro.s

Reputation: 720

Right click on your project, "View class diagram". This is available only in Ultimate edition.

Upvotes: 0

Related Questions