Single-line Comments

بكل بساطة زي ال cpp بنستخدم //

// This is a comment
Console.WriteLine("Hello World!")
 
Console.WriteLine("Hello World!");  // This is a comment

Multi-line Comments

لو عايز أعمل كومنت على أكتر من line بستخدم /*

/* The code below will print the words Hello World
to the screen, and it is amazing */
Console.WriteLine("Hello World!");