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 C3806

'property' : either a 'get' method and/or a 'set' method must be associated with this property

The body of a property must have at least one get or set method.

The following sample generates C3806:

#using <mscorlib.dll>
__gc __interface I {
   __property virtual int Size {   // C3806; add code for get or set to the body
   };
};

void main() {
}