नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
'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