Posts

Showing posts with the label UML

UML Sequence Diagram and Visual Studio

Image
In this article I will introduce you to the UML Sequence Diagrams. UML, as you now stands for Unified Modeling Language. So why sequence diagrams can be useful? Recently I have been working on legacy project. And sequence diagram can really help you to figure out the application calling sequence. Let's take this piece of code. public partial class About : System.Web.UI. Page     {         protected void Page_Load( object sender, EventArgs e)         {             var authorService = new AuthorService ();             this .Title = authorService.GetServerDateTime().ToString();         }     } I believe that one picture is better that 100 words. So here is the same code but in UML Sequence Digram. Simple UML Seque...