Errore del compilatore C3462
'type': è possibile inoltrare solo un tipo importato
L'attributo TypeForwardedTo deve essere applicato a un tipo nei metadati a cui si fa riferimento.
Per altre informazioni, vedere Inoltro dei tipi (C++/CLI).
Esempi
L'esempio seguente crea un componente.
// C3462.cpp
// compile with: /clr /LD
public ref class R {};
L'esempio seguente genera l'errore C3462.
// C3462b.cpp
// compile with: /clr /c
#using "C3462.dll"
ref class N {};
[assembly:TypeForwardedTo(N::typeid)]; // C3462
[assembly:TypeForwardedTo(R::typeid)];