Notiz
Zougrëff op dës Säit erfuerdert Autorisatioun. Dir kënnt probéieren, Iech unzemellen oder Verzeechnesser ze änneren.
Zougrëff op dës Säit erfuerdert Autorisatioun. Dir kënnt probéieren, Verzeechnesser ze änneren.
'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.