הערה
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות להיכנס או לשנות מדריכי כתובות.
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות לשנות מדריכי כתובות.
'type' : cannot declare local value type
Remarks
A class can only be declared as a value type at global scope.
Example
The following example generates C3176.
// C3176.cpp
// compile with: /clr
int main () {
enum class C {}; // C3176
}