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

CSHARP Reference: Interfaces

Quick reference for Interfaces.

Read time: 1 min Words: 14
My Progress

CSHARP Reference — Interfaces

Quick summary of Interfaces with syntax and example.

Syntax

class Program { static void Main(){} }

Example

using System;

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