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

CSHARP Reference: C# Introduction

Quick reference for C# Introduction.

Read time: 1 min • Words: 16
My Progress

CSHARP Reference — C# Introduction

Quick summary of C# Introduction with syntax and example.

Syntax

class Program { static void Main(){} }

Example

using System;

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