Create a programm that tells us Hello World.1

Step 1

Create a new project or a new file with a main method.

Step 2

Write on the console2 Hello World.

Hint: Often the console window closes instanly. So we add an Console.RaedLine()3 to let the console wait until we enter any input.

  1. You can find the solution to this task Here.

  2. MSDN site for Console.WriteLine()

  3. MSDN site for Console.ReadLine()