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