CSHARP Reference: Interfaces
Quick reference for Interfaces.
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#");
}
}