Compiler Error C3142
Visual Studio 2010
'property_name' : you cannot take the address of a property
The address of a property is not available to the developer.
The following sample generates C3142:
// C3142_2.cpp
// compile with: /clr
using namespace System;
ref class CSize {
private:
property int Size {
int get();
}
};
int main() {
&CSize::Size; // C3142
}
The following sample generates C3142:
// C3142.cpp
// compile with: /clr:oldSyntax
#using <mscorlib.dll>
using namespace System;
__gc class CSize
{
__property int get_Size();
};
int main()
{
&CSize::Size; // C3142
}