DrSchool Hızlı kod öğren.
EN AR BN CS DE EL Ara

C#: Giriş

C# öğrenmeye hızlı bir genel bakış ve Hello World ile başla.

Okuma süresi: 1 min Kelime: 45
İlerlemem

C# — Introduction

Overview

C#, masaüstü, web API, oyun (Unity) ve bulut için bir .NET dilidir.

Hello World

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

What you'll learn

  • How to run C#
  • Basic syntax style
  • Next steps (lessons & references)

Next

Open the Syntax & Cheat Sheet page for this language.