Understanding the Structure of a C# Program
🧠 Understanding the Structure of a C# Program
+---------------------------+
| using System; | → Importing a namespace
+---------------------------+
| namespace HelloWorld | → Declaring a namespace (container for code)
| { |
| class Program | → Declaring a class
| { |
| static void Main() | → Program entry point
| { |
| Console.WriteLine();| → Print to screen
| } |
| } |
| } |
+---------------------------+