C#: Giriş
C# öğrenmeye hızlı bir genel bakış ve Hello World ile başla.
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.