C#: مقدمة
ابدأ تعلم C# مع نظرة عامة ومثال Hello World.
C# — Introduction
Overview
C# لغة .NET لسطح المكتب وواجهات الويب والألعاب (Unity) والسحابة.
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.