What is C#?
C# (pronounced "C-Sharp") is a modern, object-oriented, and type-safe programming language developed by Microsoft. Launched in 2000 as part of the .NET initiative, it combines the raw power of C++ with the simple readability of Java. Today, it is completely free, open-source, and cross-platform.
C# Example
using System;
class Program
{
static void Main()
{
// Printing text to the console
Console.WriteLine("Hello, World!");
}
}