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 C3805

'token' : unexpected token, expected either '}' or an identifier

When defining a property, an invalid token was encountered. Remove the invalid token. The following code generates C3805:

#using <mscorlib.dll>
__gc class X {
   __property int Size {
      get {
      };
      void set {   // C3805; void is not valid here
      };
   }; 
};