Errore del compilatore C3223
'property': impossibile applicare 'typeid' a una proprietà
Non è possibile applicare typeid a una proprietà.
Esempio
L'esempio seguente genera l'errore C3223.
// C3223.cpp
// compile with: /clr
ref class R {
public:
property int myprop;
};
int main() {
System::Type^ type2 = R::myprop::typeid; // C3223
}