إشعار
يتطلب الوصول إلى هذه الصفحة تخويلاً. يمكنك محاولة تسجيل الدخول أو تغيير الدلائل.
يتطلب الوصول إلى هذه الصفحة تخويلاً. يمكنك محاولة تغيير الدلائل.
access specifier 'specifier' is not supported
Remarks
A CLR access specifier was specified incorrectly. For more information, see Type visibility and Member visibility in How to: Define and Consume Classes and Structs (C++/CLI).
Example
The following example generates C3418.
// C3418.cpp
// compile with: /clr /c
ref struct m {
internal public: // C3418
void test(){}
};
ref struct n {
internal: // OK
void test(){}
};