VS2005: class not shown in startup object list

Make sure the entry point is

static void Main(string[] args)

instead of

static void Main(String[] args)

The lower case of ‘s’ in string[] really matters. Otherwise, you won’t seet it in the startup object list.

This entry was posted in c#. Bookmark the permalink.