Merk
Tilgang til denne siden krever autorisasjon. Du kan prøve å logge på eller endre kataloger.
Tilgang til denne siden krever autorisasjon. Du kan prøve å endre kataloger.
'specialization' : explicit or partial specialization of a generic class is not allowed
Remarks
Generic classes cannot be used for explicit or partial specializations.
Example
The following example generates C3235.
// C3235.cpp
// compile with: /clr
generic<class T>
public ref class C {};
generic<>
public ref class C<int> {}; // C3235 Remove this specialization to resolve this error.