Posts

Showing posts with the label Visual Studio

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...

How to Remove Dots (=Spaces) and Arrows (=Tabs) in Visual Studio Editor?

Image
Sometimes you could see arrows(=tabs) and dots(=spaces) in your Visual Studio Editor. Now the nice question is how to remove them...? If you do search over the options you probably will not find a way how to do that. The solution is simple but hidden. Just press CTRL R CTRL W in your Editor. That's it.