'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() { }