// This is traditionally the first program written
using System;
namespace HelloWorldProgram
{
class HelloWorld
{
static void Main()
{
Console.WriteLine("Hello World!");
}
}
}
I dont get why the statements in the body end with a " ; " but nothing is placed at the end of method headings. Guess this is the pain as a beginner in programming.....
Thanks Again !