What is the name of the function that serves as an entry point into any C# program.
Explanation
Every C# application must contain a single Main method specifying a point where program execution is about to begin. In C#, Main is capitalized.
Main can only return int or void, and accepts an optional string array argument to represent command-line parameters:
static int Main(string[] args)
{
    //... 
    return 0;
}

Thanks. This is fixed now.

2016 Jul 2, 9:39:14 PM

One checkbox item in list of variants. It need to be textbox

2016 Jun 25, 11:49:18 AM

Follow CodeGalaxy

Mobile Beta

Get it on Google Play
Send Feedback
Cosmo
Sign Up Now
or Subscribe for future quizzes