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

CSHARP Reference: Classes

Quick reference for Classes.

Read time: 1 min Words: 14
My Progress

CSHARP Reference — Classes

Quick summary of Classes with syntax and example.

Syntax

class Program { static void Main(){} }

Example

using System;

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