次の方法で共有


コンパイラ エラー C3898

'var' : type データ メンバーは、マネージド型のメンバーにのみなることができます

initonly データ メンバーがネイティブ クラスで宣言されています。 initonly データ メンバーは CLR クラスでのみ宣言できます。

次の例では C3898 が生成されます。

// C3898.cpp
// compile with: /clr
struct Y1 {
   initonly
   static int data_var = 9;   // C3898
};

考えられる解決方法:

// C3898b.cpp
// compile with: /clr /c
ref struct Y1 {
   initonly
   static int data_var = 9;
};