← Back to All Languages
.NET Framework

C#

Est. 2000
CreatorAnders Hejlsberg (Microsoft)
ParadigmObject-Oriented • Component-Oriented

Microsoft's modern, object-oriented language for the .NET platform. C# is used for Windows applications, games (Unity), and enterprise software.

Hello World
1using System;
2class Program {
3 static void Main() {
4 Console.WriteLine("Hello, World!");
5 }
6}