Main Entry Point : Main « Language Basics « C# / CSharp Tutorial






Main is the entry point method for a C# application.

static void Main() {
    // main block
}

static int Main() {
    // main block
}

static void Main(string [] args){
    // main block
}

static int Main(string [] args){
    //
}








1.4.Main
1.4.1.The Main Function
1.4.2.The Main Function: use foreach to loop through command-line parameters
1.4.3.The main function: returning an int status
1.4.4.Main Entry Point
1.4.5.Looking for Command-Line Options
1.4.6.Looking for Command-Line Options (Simplified)
1.4.7.Using foreach to loop through the parameter from Main function