컴파일러 오류 C3914
기본 속성은 정적일 수 없습니다.
기본 속성이 잘못 선언되었습니다. 자세한 내용은 방법: C++/CLI에서 속성 사용
예시
다음 샘플에서는 C3914를 생성하고 이를 해결하는 방법을 보여 줍니다.
// C3914.cpp
// compile with: /clr /c
ref struct X {
static property int default[int] { // C3914
// try the following line instead
// property int default[int] {
int get(int) { return 0; }
void set(int, int) {}
}
};