컴파일러 오류 C3155
속성 인덱서에서는 특성이 허용되지 않습니다.
인덱싱된 속성이 잘못 선언되었습니다. 자세한 내용은 방법: C++/CLI에서 속성 사용
예시
다음 샘플에서는 C3155를 생성합니다.
// C3155.cpp
// compile with: /clr /c
using namespace System;
ref struct R {
property int F[[ParamArray] int] { // C3155
// try the following line instead
// property int F[ int] { // OK
int get(int i) {
return 0;
}
}
};