Once you have dotnet SDK installed, you can create your first program.
To create a console project run
dotnet new console -o MyApp
This will create MyApp folder with 2 files inside. Program.cs is a basic program that prints “Hello World” text in the console.
To run the dotnet project, you can use the command
dotnet run
Back to dotnet
Leave a Reply