After the { braces following the static void Main( line type
Console.WriteLine("Hello World") ;
Console.ReadKey() ;
It should look like this:
Now Press the F6 key and it should say Build succeeded in the bottom left of the IDE.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World") ;
Console.ReadKey() ;
}
}
}
On the next page : Running the Hello World Application


