다음을 통해 공유


컴파일러 오류 C3902

'accessor': 마지막 매개 변수의 형식은 'type'이어야 합니다.

하나 이상의 set 메서드의 마지막 매개 변수 형식이 속성의 형식과 일치해야 합니다. 자세한 내용은 property을 참조하세요.

다음 샘플에서는 C3902를 생성합니다.

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

   property double values[int,int] {
      void set(int, int, float);   // C3902
      // try the following line instead
      // void set(int, int, double){}
   }
};