नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
'type' : a specialization of a generic class cannot be forwarded
Remarks
You cannot use type forwarding on a specialization of a generic class.
For more information, see Type Forwarding (C++/CLI).
Example
The following example creates a component.
// C3466.cpp
// compile with: /clr /LD
generic<typename T>
public ref class GR {};
public ref class GR2 {};
The following example generates C3466.
// C3466_b.cpp
// compile with: /clr /c
#using "C3466.dll"
[assembly:TypeForwardedTo(GR<int>::typeid)]; // C3466
[assembly:TypeForwardedTo(GR2::typeid)]; // OK