Getting Started with .NET Core

Welcome to .NET Core – a cross-platform, open-source runtime and development environment.

What is .NET Core?

.NET Core is a modular, cross-platform, and open-source runtime built on the .NET framework. It's designed to be lightweight and performant, making it suitable for a wide range of applications, including web applications, console applications, and microservices.

Key Features

Getting Started

Here's how to get started:

  1. Download .NET
  2. Install the .NET SDK.
  3. Create your first console application: dotnet new console
  4. Run your application: dotnet run

Resources