May 2018
Intermediate to advanced
394 pages
9h 51m
English
Let's see what's going on behind the scenes. From steps 1 to 4, we created the base for the project. This base will help you to create the .NET Standard 2.0 library and the project that will be using that library. A blank solution is always a good starting point for any sort of project. In steps 5 to 10, we added the .NET Standard 2.0 library project to the blank solution and gave it a meaningful name. In steps 11 to 13, we changed the default class template name to a meaningful name.
In step 14, we created a reference to the System.Collections.Generics namespace. This will give you access to all the collections available under this namespace. In step 15, we used one generic collection object known as List<T>. In the next ...