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 C3800

'property' : a property cannot be both 'static' and 'virtual'

A property can be static or virtual, but not both.

The following sample generates C3800:

#using <mscorlib.dll>

__gc class X {
   __property static virtual int Size {   // C3800; static or virtual but not both
   };
};

void main() {
}