다음을 통해 공유


컴파일러 오류 C3458

'attribute1': 'attribute2' 특성이 'construct'에 대해 이미 지정되어 있습니다.

함께 사용할 수 없는 두 특성이 동일한 구문에 대해 지정되었습니다.

예시

다음 샘플에서는 C3458을 생성합니다.

// C3458.cpp
// compile with: /clr /c
[System::Reflection::DefaultMember("Chars")]
public ref class MyString {
public:
   [System::Runtime::CompilerServices::IndexerName("Chars")]   // C3458
   property char default[int] {
      char get(int index);
      void set(int index, char c);
   }
};