Discover Microsoft VS

Visual Studio Editor
In this article, we will talk about the subtleties and practical use of the Microsoft Visual Studio program. I will talk about a few small tips that will be useful for you and save you time about Visual Studio, which meets the expectations of Windows-based software developers to a great extent.
1. When writing any application, you do not need to go to the top of the page and type Using System…. to add the class that the method you will use to your project. Keep typing the method or function you are going to use even if VisualStudio does not color it, and as soon as you press the key combination“ALT+SHIFT+F10” from the keyboard as soon as the name of the method is finished, the class that the method depends on is automatically added to the Using line and the method you typed is also automatically colored.
2. As another tip, if you want to use expressions such as if, while, for, try-catch in a practical and fast way, press the“TAB” key on the keyboard twice in a row after typing the expression. This will open all parentheses and internal brackets. For example; when you type if and TAB+TAB;
if(true)
{
}
The block will be opened automatically. Thus, you will only need to set the conditional clauses.
3. When writing an application in Visual Studio, you can manually debug the application without running it and call the faulty lines in order. For this, you need to press the“F9” key on your keyboard while in the line of code. In this way, it finds the wrong line and marks it with a red dot. This way you can detect errors before you even build the application.




