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 Error CS1002

; expected

The compiler detected a missing semicolon.

The following sample generates CS1002:

namespace x {
   abstract public class clx {
      int i   // CS1002, missing semicolon
      public static int Main() {
         return 0;
      }
   }
}