Which among these access specifiers should be used for main() method?
Which among these access specifiers should be used for main() method? Correct Answer public
main() method must be specified public as it called by Csharp run time system outside of the program, by default main is private in nature if no access specifier is used.