Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# entry point function

Tags:

c#

Is it necessary to use static void main() as the entry point function in C#, or can we use some other function? Why is main() static?

like image 781
Sandeep Avatar asked May 10 '11 18:05

Sandeep


Video Answer


2 Answers

Before C# 9, the entry point had to be declared explicitly. C# 9 introduces top level statements which allow the entry point to be generated implicitly. (Only a single source file in a project can include top-level statements, however.)

When the entry point is declared explicitly, it has to be Main. It's static because otherwise the CLR would need to worry about creating an instance of the type - which means you'd presumably have to have a parameterless constructor, even if you didn't want an instance of the type, etc. Why would you want to force it to be an instance method?

Even with top-level statements, your actual program still has an entry point called Main - it just doesn't appear in your source code.

like image 143
Jon Skeet Avatar answered Oct 11 '22 02:10

Jon Skeet


Yes, for a C# application, Main() must be the entry point.

The reason is because that's what the designers of the language decided to be what to look for as an entry point for your program. They could just as well have used a totally different approach to find the entry point, e.g. using meta data, or instantiating an object for you (which would require a parameterless constructor). Another reason for naming it void main() is that it's intuitive for users coming from other languages.

like image 39
Chris Kooken Avatar answered Oct 11 '22 02:10

Chris Kooken