Learn C#

C# (pronounced "C Sharp") is a modern, object-oriented programming language developed by Microsoft. It's widely used for game development, desktop applications, and enterprise software.

What You’ll Learn

Beginner C# Resources

Try It Yourself

Create a C# console app that asks for your favorite color and displays a message.


// Program.cs
using System;

class Program
{
    static void Main()
    {
        Console.Write("Enter your favorite color: ");
        string color = Console.ReadLine();
        Console.WriteLine($"Wow! {color} is a great color!");
    }
}