Errore del compilatore C3185
'typeid' utilizzato nel tipo gestito o WinRT 'type'; utilizzare 'operator'
Non è possibile applicare l'operatore typeid a un tipo gestito o WinRT. Usare invece typeid .
L'esempio seguente genera l'errore C3185 e mostra come risolverlo:
// C3185a.cpp
// compile with: /clr
ref class Base {};
ref class Derived : public Base {};
int main() {
Derived ^ pd = gcnew Derived;
Base ^pb = pd;
const type_info & t1 = typeid(pb); // C3185
System::Type ^ MyType = Base::typeid; // OK
};