Errore del compilatore C3460
'type': è possibile inoltrare solo un tipo definito dall'utente
Per altre informazioni, vedere Inoltro dei tipi (C++/CLI).
Esempi
L'esempio seguente crea un componente.
// C3460.cpp
// compile with: /LD /clr
public ref class R {};
L'esempio seguente genera l'errore C3460.
// C3460_b.cpp
// compile with: /clr /c
#using "C3460.dll"
[assembly:TypeForwardedTo(int::typeid)]; // C3460
[assembly:TypeForwardedTo(R::typeid)];