Introduction to C#

C# (pronounced “C-sharp”) is a modern, object-oriented programming language developed by Microsoft.

Why Choose C#?

  • Part of the powerful .NET framework
  • Great for Windows applications
  • Excellent for game development with Unity
  • Strong type safety
  • Modern language features

Your First C# Program

Here’s a simple “Hello World” program in C#:

using System;

class Program
{
    static void Main()
    {
        Console.WriteLine("Hello, World!");
    }
}

Basic C# Concepts

  1. Classes - The basic unit of code
  2. Methods - Functions that perform actions
  3. Variables - Store data
  4. Types - Define data characteristics

Development Environment

To start with C#:

  1. Download Visual Studio
  2. Install .NET SDK
  3. Create a new C# project
  4. Start coding!