次の方法で共有


コンパイラ エラー C3813

プロパティ宣言はマネージド型または WinRT 型の定義内でのみ使用できます

property を宣言できるのは、マネージド型または Windows ランタイム型の中だけです。 ネイティブ型では、property キーワードがサポートされていません。

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

// C3813.cpp
// compile by using: cl /c /clr C3813.cpp
class A
{
   property int Int; // C3813
};

ref class B
{
   property int Int; // OK - declared within managed type
};