הערה
גישה לעמוד זה דורשת אישור. אתה יכול לנסות להיכנס או לשנות תיקיות.
גישה לעמוד זה דורשת אישור. אתה יכול לנסות לשנות מדריכים.
'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
}