Tag Archives: Visual Studio 2015

Visual Studio 2015

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 »

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 »

Using C # and Visual Studio 2015 to make additional form.

Today I will tell you about how to use additional form into C# source code without using Form Design. First, you need to open under Visual Studio 2015 a new project Windows Form Application. This project will come with a windows form. Press Ctr+Alt+X keys and will see the Toolbox with all Windows controls. Add… Read More »

How to see and understanding the shaders with Microsoft Visual Studio.

You need Visual Studio from Microsoft from Visual Studio 2015 website. The shaders used by Microsoft Visual Studio 2015 come like DGSL file. This extension is associated with the Microsoft Visual Studio integrated development environment that allows programmers to create applications for Microsoft Windows, Windows Phone, web, etc. Also, the .dgsl file stores definitions of… Read More »