次の方法で共有


コンパイラ エラー C3459

'attribute': 属性は、クラス インデクサー (既定のインデックス付きのプロパティ) のみに使用できます

クラス インデクサー プロパティに適用されるように設計された属性が正しく使用されていません。

詳細については、「方法: C++/CLI でプロパティを使用する」を参照してください。

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

// C3459.cpp
// compile with: /clr /c
public ref class MyString {
public:
   [System::Runtime::CompilerServices::IndexerName("Chars")]   // C3459
   property int Prop;
};

// OK
public ref class MyString2 {
   array<int>^ MyArr;
public:
   MyString2() {
      MyArr = gcnew array<int>(5);
   }

   [System::Runtime::CompilerServices::IndexerName("Chars")]   // OK
   property int default[int] {
      int get(int index) {
         return MyArr[index];
      }
      void set(int index, int value) {
         MyArr[index] = value;
      }
   }
};