Multi-line comment example in C#

C# Programming Language / Overview of C# Language

393

Program:

using System;

namespace HelloWorld
{
  class Program
  {
    static void Main(string[] args)
    {
      /* The code below will print the words Hello World
      to the screen, and it is amazing */
      Console.WriteLine("Hello World!");    
     }
  }
}

Output:

Hello World!

Explanation:

None

This Particular section is dedicated to Programs only. If you want learn more about C# Programming Language. Then you can visit below links to get more depth on this subject.