컴파일러 오류 C2777
속성당 'put' 메서드를 하나만 지정할 수 있습니다.
속성 declspec 한정자에는 둘 put
이상의 속성이 있습니다.
다음 샘플에서는 C2777을 생성합니다.
// C2777.cpp
struct A {
__declspec(property(put=PutProp,put=PutPropToo)) // C2777
// try the following line instead
// __declspec(property(put=PutProp))
int prop;
int PutProp(void);
int PutPropToo(void);
};