Pengenalan C#

Admin 17 Mar 2026 398 Views CSS Dasar

Apa itu C#?

C# adalah bahasa pemrograman yang dikembangkan oleh Microsoft, bersifat modern dan berorientasi objek.

Kelebihan C#

  • Part of .NET ecosystem
  • Strongly typed
  • Object-oriented
  • Banyak library dan framework

Contoh Kode

Example
<!-- Hello World C# -->
using System;

class Program
{
    static void Main()
    {
        Console.WriteLine("Halo, C#!");
    }
}

<!-- Class Example -->
public class Person
{
    public string Name { get; set; }
    public int Age { get; set; }
    
    public void SayHello()
    {
        Console.WriteLine($"Halo, saya {Name}");
    }
}