This is a beginner code sample for learning C# and .NET Core.
- .NET Core Core SDK
- Visual Studio Code or Visual Studio (for the first part, we will be using VS Code)
To get the .NET SDK, visit dot.net and get the latest version. After installation, verify you installation by running
dotnet --version
On my Mac, I have .NET Core 3 SDK Installed as of when writing this. so I get.
GWL-Mac:c-sharp-with-dotnet-core daraoladapo$ dotnet --version
3.0.100-preview6-012264
The version number displayed may be different from what you have on your computer which is totally fine.
Run dotnet new
and it will show you a list of available app options to build with your installed version of .NET Core
The lesson files are broken down into basic chunks to grasp and progress from simple to a 'lil bit more complex lessons.
This will be the first part of this series. We will have 20 sections in this starter section.
Read section structure here.
In this section, we just spend our time writing some pretty small projects using some of the things learnt in the starting with console section.
Read more about the section here.