'property' : a property cannot have a 'const' or 'volatile' type
The const and volatile keywords are not permitted on properties.
For example, the following code generates C3135:
__interface IMyI { [ property ] const int Size; };