Tag Archives: Visual Studio 2017

visual studio 2017

C# – First steps with C# and .NET – part 025 .

Refactoring is the process of modifying code in order to make it easier to maintain, understand, and extend, but without changing its behavior., see Wikipedia webpage. If you use an integrated development environment known as I.D.E. then some refactoring commands are present under the refactoring menu. If not, then you need to do it manually.… Read More »

Code Graph development tool for Visual Studio.

This tool for development issues can be used with all versions of Visual Studio 2012-2017 and 2019 and is created by Yiubun Auyeung. The base of this tool is an atlas graph with all your source code. After download and install from the official webpage, use the main menu, and select Extensions – Code Graph… Read More »

Tool for coding patterns into Visual Studio.

Coding patterns change over the years and most common are Pascal Case and Camel Case. What are these patterns? The simple way: PascalCase means the first char should be capitalized, while camelCase means the first char should be lowercased. Example:

This tool is a simple visual studio extension and can help you to deal… Read More »