次の方法で共有


コンパイラ エラー C3387

'member' : __declspec(dllexport)/__declspec(dllimport) は、マネージドまたは WinRT 型のメンバーに適用できません

dllimport および dllexport __declspec 修飾子は、マネージドまたは Windows ランタイム型のメンバーでは有効ではありません。

次の例では C3387 を生成し、その修正方法を示しています。

// C3387a.cpp
// compile with: /clr /c
ref class X2 {
   void __declspec(dllexport) mf() {   // C3387
   // try the following line instead
   // void mf() {
   }
};