إشعار
يتطلب الوصول إلى هذه الصفحة تخويلاً. يمكنك محاولة تسجيل الدخول أو تغيير الدلائل.
يتطلب الوصول إلى هذه الصفحة تخويلاً. يمكنك محاولة تغيير الدلائل.
'construct' : 'keyword' can only be applied to a class, struct, or virtual member function
Remarks
Certain keywords can only be applied to a C++ class.
Example
The following example generates C3152 and shows how to fix it:
// C3152.cpp
// compile with: /clr /c
ref class C {
int (*pfn)() sealed; // C3152
virtual int g() sealed; // OK
};