Sdílet prostřednictvím


Chyba kompilátoru C3917

'property': zastaralý styl deklarace konstruktoru

Poznámky

Vlastnost nebo definice události používala syntaxi z verze před sadou Visual Studio 2005.

Další informace naleznete v tématu vlastnost.

Příklad

Následující příklad generuje C3917:

// 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;
      }
   }
};