Meta
Categories
Category Archives: c#
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.
Posted in c#
Leave a comment