הערה
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות להיכנס או לשנות מדריכי כתובות.
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות לשנות מדריכי כתובות.
property declaration at non-class scope is not allowed
Remarks
The property __declspec modifier was used outside a class. A property can only be declared inside a class.
Example
The following example generates C3065:
// C3065.cpp
// compile with: /c
__declspec(property(get=get_i)) int i; // C3065
class x {
public:
__declspec(property(get=get_i)) int i; // OK
};