- Course
- Introduction to C#
- Introduction to .NET Core Framework
Introduction to .NET Core Framework
Last updated:
8/25/2020
.NET Core is a free and open source framework for Windows, Linux and macOS operating systems. It is a cross-platform successor to the .NET Framework.
To compile and run C# programs you need to install the .NET Core command line, you can download it from dotnet.microsoft.com/download.
To create the structure of a new console project in C# run the following command.
dotnet new console -o helloworld
To compile the program run the following command.
dotnet build
To run the program run the following command.
dotnet run