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 CS1003

Syntax error, 'char' expected

The compiler will generate this error for any one of several error conditions. Review you code to find the syntax error.

The following sample generates CS1003:

public class b {
   public static void Main() {
      int[] a;
      a[);   // CS1003
   }
}