Edit

Share via


Compiler Error C3461

'type': only a managed type can be forwarded

Remarks

Type forwarding can only occur on CLR types. See Classes and Structs for more information.

For more information, see Type Forwarding (C++/CLI).

Example

The following example creates a component.

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

The following example generates C3461.

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