Condividi tramite


Errore del compilatore C3901

'accessor_function': deve avere il tipo restituito 'type'

Almeno un tipo restituito del metodo get deve corrispondere al tipo di proprietà. Per altre informazioni, vedere property.

L'esempio seguente genera l'errore C3901:

// C3901.cpp
// compile with: /clr /c
using namespace System;
ref class X {
   property String^ Name {
      void get();   // C3901
      // try the following line instead
      // String^ get();
   };
};

ref class Y {
   property double values[int, int] {
      int get(int, int);   // C3901
      // try the following line instead
      // double get(int, int);
   };
};