Compiler Error C3223
Visual Studio 2015
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
The latest version of this topic can be found at Compiler Error C3223.
property' : you cannot apply 'typeid' to a property
You cannot apply typeid to a property.
The following sample generates C3223.
// C3223.cpp
// compile with: /clr
ref class R {
public:
property int myprop;
};
int main() {
System::Type^ type2 = R::myprop::typeid; // C3223
}
Show: