DrSchool Learn coding, fast.
EN AR BN CS DE EL Search

C#: Introduction

Start learning C# with a quick overview and Hello World.

Read time: 1 min Words: 45
My Progress

C# — Introduction

Overview

C# is a .NET language for desktop, web APIs, games (Unity), and cloud.

Hello World

using System;
class Program {
  static void Main(){
    Console.WriteLine("Hello, World!");
  }
}

What you'll learn

  • How to run C#
  • Basic syntax style
  • Next steps (lessons & references)

Next

Open the Syntax & Cheat Sheet page for this language.