C# (pronounced "C sharp") is a modern, object-oriented programming language developed by Microsoft. It's used for a wide range of applications, including desktop applications, web applications, mobile apps, and games.
Here are some fundamental concepts in C#:
using System;
public class Program
{
public static void Main(string[] args)
{
Console.WriteLine("Hello, C#!");
int x = 10;
int y = 5;
int sum = x + y;
Console.WriteLine($"The sum of {x} and {y} is: {sum}");
}
}