The static keyword indicates that it is single copy in to memory As main is entry point to execute the code so is is static and it doest require any object calling
static is the key word is indicate in .net that, it can not be changed. while main is key word to indicate the main portion of application from where application is started. so the main entry point of application is fixed can not be changed as definition. but we can change its implements. so this is static.
static is used to preserve memory at compilation time.so,that main function will be stored in memory any will be executed.
Every C# program of main is Entry Point of the execute the code.we know that static keyword is single copy in to memory.static keyword are without instanse.so it is use of static keyword in main function.
as main function is entry point in execution and static keyword need not require any object for calling main function, so program starts directly from 'static main' in class
Main is the entry point for an application and to access the entry point from any where in an application that's why main is static.