Kompilatorfel C3363

"type" : "typeid" kan endast tillämpas på en typ

Anmärkningar

Typeid-operatorn användes felaktigt.

Example

I följande exempel genereras C3363.

// C3363.cpp
// compile with: /clr
int main() {
   System::typeid;   // C3363
}