The main function: returning an int status : Main « Language Basics « C# / CSharp Tutorial






using System;

class MainClass
{
    public static int Main()
    {
        Console.WriteLine("Hello, Universe!");
        return(0);
    }
}
Hello, Universe!








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