Understanding Namespaces and Libraries
🔄 Understanding Namespaces and Libraries
C# code is organized into namespaces to avoid name collisions and manage complexity.
using System; // Standard .NET namespace
using System.Collections.Generic;
The **System** namespace provides basic classes like `Console`, `Math`, etc.