The Main method shouldn't need to be called by anyone.
It is actually marked as the entry point for execution in the EXE itself, and therefore has no outside callers by default.
If you WANT, you can open it up to be called by marking public, e.g. if you are turning a console app into an API.