Errore degli strumenti del linker LNK2033

token typeref non risolto (token) per 'type'

Un tipo non ha una definizione nei metadati MSIL.

LNK2033 possono verificarsi durante la compilazione con /clr:safe e in cui è presente solo una dichiarazione forward per un tipo in un modulo MSIL, in cui viene fatto riferimento al tipo nel modulo MSIL.

Il tipo deve essere definito in /clr:safe.

Per altre informazioni, vedere /clr (Compilazione Common Language Runtime).

Esempio

L'esempio seguente genera LNK2033.

// LNK2033.cpp
// compile with: /clr:safe
// LNK2033 expected
ref class A;
ref class B {};

int main() {
   A ^ aa = nullptr;
   B ^ bb = nullptr;   // OK
};