Thursday, 27 February 2014

Main() Method and its purpose?

The Main method is the entry point of a C# console application or windows application.When the application is started, the Main method is the first method that is invoked. A main method is static because it is available to run when your program starts and as it is the entry point of the program it...