Condividi tramite


Errore del compilatore C3461

'type': è possibile inoltrare solo un tipo gestito

L'inoltro dei tipi può essere usato solo nei tipi CLR. Per altre informazioni, vedere Classi e struct .

Per altre informazioni, vedere Inoltro dei tipi (C++/CLI).

Esempi

L'esempio seguente crea un componente.

// C3461.cpp
// compile with: /clr /LD
public ref class R {};

L'esempio seguente genera l'errore C3461.

// C3461b.cpp
// compile with: /clr /c
#using "C3461.dll"
class N {};
[assembly:TypeForwardedTo(N::typeid)];   // C3461
[assembly:TypeForwardedTo(R::typeid)];   // OK