This would be question from c# beginner. When I create console application I get Main method with parameter args as array string. I do not understand how t
The Main method is the Entry point of your application. If you checkout via ildasm then
ildasm
.method private hidebysig static void Main(string[] args) cil managed { .entrypoint
This is what helps in calling the method
The arguments are passed as say C:\AppName arg1 arg2 arg3
C:\AppName arg1 arg2 arg3