Get started building robust and scalable applications with .NET Core.
.NET Core is a cross-platform, open-source application development framework developed by Microsoft. It's a significant upgrade over the previous .NET framework, offering improved performance, security, and developer experience.
Start building your first .NET Core application with a simple console app:
Create a new console project: dotnet new console
Replace the contents of `Program.cs` with the following:
using System;
Console.WriteLine("Hello, world!");