Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
'type': only a managed type can be forwarded
Type forwarding can only occur on CLR types. See Classes and Structs for more information.
For more information, see Type Forwarding (C++/CLI).
Examples
The following sample creates a component.
// C3461.cpp
// compile with: /clr /LD
public ref class R {};
The following sample generates C3461.
// C3461b.cpp
// compile with: /clr /c
#using "C3461.dll"
class N {};
[assembly:TypeForwardedTo(N::typeid)]; // C3461
[assembly:TypeForwardedTo(R::typeid)]; // OK