Compiler Error C3235
Visual Studio 2015
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
The latest version of this topic can be found at Compiler Error C3235.
specialization' : explicit or partial specialization of a generic class is not allowed
Generic classes cannot be used for explicit or partial specializations.
The following sample 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.
Show: