Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
explicit specializations are not supported in generics
A generic class was declared incorrectly. See Generics for more information.
Example
The following sample generates C2979.
// C2979.cpp
// compile with: /clr /c
generic <>
ref class Utils {}; // C2979 error
generic <class T>
ref class Utils2 {}; // OK