Create .NET 6 Console Application Using C# 10 and Visual Studio 2022 | Basic Beginner’s Tutorial

In this basic tutorial for beginner’s I will show how to create(make) a console application using C# 10, .NET core 6 and Visual Studio 2022. This C# console application will take user input and display it back to the user. I am using a for loop to repeat an user input multiple times. I will also create a student class and instantiate in the program.cs which is the main entry point in a .NET core 6 project.

Download the source code:
https://github.com/tutorpraveen/ConsoleDemo

You can download Visual studio 2022 from the link below:
https://visualstudio.microsoft.com/downloads/

You can download the older versions of visual studio (2019, 2015 and so on) from the link below:
https://visualstudio.microsoft.com/vs/older-downloads/

—-Contents of this Video—–
0:00 Intro
0:48 Create the project
1:18 Add code to read user Input
4:56 Run the app
5:15 Add some more code
8:55 Run the App again