다음을 통해 공유


컴파일러 오류 C3901

'accessor_function': 'type' 반환 형식이 있어야 합니다.

하나 이상의 get 메서드의 반환 형식이 속성 형식과 일치해야 합니다. 자세한 내용은 property을 참조하세요.

다음 샘플에서는 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);
   };
};