הערה
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות להיכנס או לשנות מדריכי כתובות.
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות לשנות מדריכי כתובות.
'member' : __declspec(dllexport)/__declspec(dllimport) cannot be applied to a member of a managed or WinRT type
Remarks
The dllimport and dllexport __declspec modifiers are not valid on members of a managed or Windows Runtime type.
Example
The following example generates C3387 and shows how to fix it:
// C3387a.cpp
// compile with: /clr /c
ref class X2 {
void __declspec(dllexport) mf() { // C3387
// try the following line instead
// void mf() {
}
};