Ошибка компилятора C3917Compiler Error C3917
"свойство": устаревший стиль объявления конструкции'property': obsolete construct declaration style
Определение свойства или события использовало синтаксис из версии до Visual Studio 2005.A property or event definition used syntax from a version before Visual Studio 2005.
Для получения дополнительной информации см. property.For more information, see property.
ПримерExample
// C3917.cpp
// compile with: /clr /c
public ref class C {
private:
int m_length;
public:
C() {
m_length = 0;
}
property int get_Length(); // C3917
// The correct property definition:
property int Length {
int get() {
return m_length;
}
void set( int i ) {
m_length = i;
}
}
};