הערה
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות להיכנס או לשנות מדריכי כתובות.
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות לשנות מדריכי כתובות.
explicit specializations are not supported in generics
Remarks
A generic class was declared incorrectly. See Generics for more information.
Example
The following example generates C2979.
// C2979.cpp
// compile with: /clr /c
generic <>
ref class Utils {}; // C2979 error
generic <class T>
ref class Utils2 {}; // OK