1.

Why Do I Get A "cs5001: Does Not Have An Entry Point Defined" Error When Compiling?

Answer»

The most common problem is that you used a LOWERCASE 'm' when defining the Main method. The correct way to implement the ENTRY point is as follows:
class test
{
static void Main(string[] ARGS) {}
}

The most common problem is that you used a lowercase 'm' when defining the Main method. The correct way to implement the entry point is as follows:
class test
{
static void Main(string[] args) {}
}



Discussion

No Comment Found