Expand Minimize
This topic has not yet been rated - Rate this topic

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.
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.