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 CS1001

Identifier expected

You did not supply an identifier. For example, when declaring an enum, you must specify members.

The following sample generates CS1001:

public class clx {
   enum splitch : int {
      'a', 'b' // CS1001, 'a' is not a valid int identifier
   };

   public static void Main() {
   }
}