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 C3807

unexpected 'character': did you forget a ';'?

A semicolon is missing from the end of an accessor definition.

The following sample generates C3807:

#using <mscorlib.dll>
__gc class X {
    __property int Size {
   get {
   };
   set {
   }   // C3807; add semicolon
   }; 
};