May 2018
Intermediate to advanced
394 pages
9h 51m
English
Let's have a look at what we have achieved so far. From steps 1 to 4, we opened Visual Studio 2017 and created a blank solution. Blank solutions are a very good foundation for a project that has multiple projects. In steps 5 to 10, we added a new project to the blank solution. In step 7, we used an existing base .NET Standard 2.0 project template and gave it a proper name in step 8.
In steps 11 and 12, we changed the default Class1.cs to a meaningful name. These names are very important and it helps a developer to understand what the code is for inside that file. In this case, we chose Chapter2.Primitives.PrimitiveLib as the project name. The first two sections provide the solution name and, at the end, there is the actual ...