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