Concepts Revisited - C# Nuts and Bolt - Beta2
Chapter 1
Concepts Revisited
Entry Point
The first function to be called in any C# program is Main. Obviously someone at Microsoft tossed a coin and as it fell 'heads', they chose Main. Had it been 'tails', one wonders what the first function would have been called. As everything starts from Main, it is also called the entry point of the program. It is the fountainhead of all knowledge. Incidentally, the C programming language also calls Main as its first function for all C-language programs. We can have as many as four different ways to declare
↧