We are going to take a simple dive in the visual studio to create a simple console application that returns the output on the terminal or the command pallet.
We will go step-wise to understand the process and each and every step.
First of all, we will open the visual studio.
![Visual studio]()
After that, you will see the VS 2022 screen below. Click on Create a new project.
![First screen]()
After clicking on the Create new project, we can see the screen below, where we see the name of the console app.
![Create new project]()
After clicking on the next, we fill in the project name and the location to save our project, and then we will click on the next.
![Project name]()
In the next window, we will select the framework of .NET, which will be stable and for our convenience, and that's when we get our project open.
![Framework]()
We get the output like this.
![Output]()
These are the simple steps to create a console application in VS 2022.