Lesson 2 of 8Article14 minFREE
.NET and Project Basics
.NET and Project Basics
Understanding the .NET stack
- .NET SDK gives you compiler and CLI tools.
- CLR executes managed code and handles memory management.
- NuGet provides package management for reusable libraries.
CLI workflow
Create and run a console app
dotnet new console -n RishtaaraApp
cd RishtaaraApp
dotnet runTop-level statements style
Console.WriteLine("Quick start with top-level statements");