NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Compiler Warning (level 1) CS5001

Program 'output file' does not have an entry point defined

No Main method was found in the code that produces an executable file.

The following sample generates CS5001:

namespace x
{
   public class a
   {
   // uncomment the following line to resolve CS5001
   //   public static void Main(){}
   }
}