C# Introduction

What is C#?

C# (C-Sharp) is a programming language developed by Microsoft that runs on the .NET Framework.

Why Learn C#?

Example

using System;

class Program {
  static void Main() {
    Console.WriteLine("Hello World from C#!");
  }
}