Interview Question
Qus: Why we have “Main()” method as static method?
When we run the application the CLR will invoke Main(). If the Main() is a instance method it requires object. To succeed this, Main() method is defined as static method.
Answers (2)