Every C# Program should contain a Main method . This is generally the entry point for the Program
When the C# Program starts , the Main method provides an entry point for the Program .
The C# Compiler searched for the method Main method and executes the statements in the Main Method one by one.
Below is a sample sourcecode of the Main Method
class Program
{
static void Main(string[] args)
{
Console.WriteLine("This is a test Application ");
Console.WriteLine("This sample demonstrated the Main Method in C#");
}
}