Bemærk
Adgang til denne side kræver godkendelse. Du kan prøve at logge på eller ændre mapper.
Adgang til denne side kræver godkendelse. Du kan prøve at ændre mapper.
'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