As we've seen, static methods and variables can be used without creating an instance of the class they're in.

It's important for Main () to be static because it's at the very beginning of the program.

Psst: why didn't we create an instance of the Console class when we called the WriteLine () method? Well, because WriteLine () is a static method as well!