Programming Course in C# ¡Free!

First program. Hello world.

 Thursday, May 25, 2017 published by Exercises C#
Course > Basic concepts > First Program - Hello World
One of the epic programs and the first of all programmers. Write a program in C# to print the magic words, Hello World. To do this you can use the method WriteLine.

Input

-

Output

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