Click here to Skip to main content
15,881,204 members
Articles / Programming Languages / Visual Basic
Tip/Trick

Visual Studio 2010 Tips & Tricks

Rate me:
Please Sign up or sign in to vote.
4.83/5 (12 votes)
19 Apr 2010CPOL2 min read 29.9K   13   2
Architecture Tools in VS 2010 supports UML (Unified Modeling Language 2.1.1) diagrams to help you understand your application, such as the Architecture Explorer and Dependency Graphs.To create the following UML diagrams, as well as to use the Architecture Explorer, requires Visual Studio...
Architecture Tools in VS 2010 supports UML (Unified Modeling Language 2.1.1) diagrams to help you understand your application, such as the Architecture Explorer and Dependency Graphs.

To create the following UML diagrams, as well as to use the Architecture Explorer, requires Visual Studio 2010 Ultimate. Users of Visual Studio 2010 Premium have the ability to read diagrams created in Visual Studio 2010 Ultimate.

UML Diagrams in VS 2010 are the ff:
1. Use Case Diagrams
2. Activity Diagrams
3. Sequence Diagrams
4. Component Diagrams
5. Class Diagrams


1. Use case diagram provides a summary of who is using the application, and how they plan on using it. It is used to provide a view into how the application will be used and the actions that can take place in the system.

2. Once you have developed your use case diagrams, you will want to break them down into activity diagrams. An activity diagram is used to show a software process or business activity as a workflow through a series of actions.

3. Seuence diagrams are used to show interactions between different objects in the software system. Usually these interactions take place as a series of messages exchanged between the different objects.

4. Once you have created your use case, activity and sequence diagrams, you are ready to visualize the different components that make up your software system. Component diagrams enable you to do just that, by laying out the different components in your system, and how they interact.

5. Class diagrams (also referred to as logical class diagrams) are used to describe the different objects in the application being developed. It does this without any reference to how the objects are implemented, allowing the diagram to be used regardless of the underlying code base used to develop the system.

Some Others Tools are...

•Layer Diagrams
•Architecture Explorer
•Dependency Graphs


•Layer diagrams are a new type of diagram that allow you to describe the "logical" architecture of your application. Your code can be organized into different "layers", allowing a better understanding of what objects perform what tasks. Layer diagrams can also be incorporated into the automated build process, allowing you to ensure that no architectural constraints have been violated.

•The Architecture Explorer is a tool available in Visual Studio 2010 Ultimate that allows you to drill down into an existing code base, or even into compiled managed code, to gain a better understanding of what the code is trying to accomplish.And can be combined with dependency graphs to make it easy to understand your code base. Dependency graphs are used to show the relationships between different objects and areas of code. Information discovered using the Architecture Explorer can be easily visualized using dependency graphs.

•Use the dependency graph to view relationships among different objects and areas of code.


...Hope it Helps....

..pls..rate....

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Junior)
Philippines Philippines
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralReason for my vote of 5 good Pin
Manoj Kumar Choubey21-Jan-12 2:43
professionalManoj Kumar Choubey21-Jan-12 2:43 
GeneralInteresting, very similar to this article: http://visualstud... Pin
JC_Lvngstn4-May-10 9:46
JC_Lvngstn4-May-10 9:46 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.