'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 }; }; };