หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
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(){}
};