컴파일러 오류 C3352
'function': 지정된 함수가 대리자 형식 'type'과 일치하지 않습니다.
매개 변수 목록 function
과 대리자가 일치하지 않습니다.
자세한 내용은 대리자(C++ 구성 요소 확장)를 참조하세요.
다음 샘플에서는 C3352를 생성합니다.
// C3352.cpp
// compile with: /clr
delegate int D( int, int );
ref class C {
public:
int mf( int ) {
return 1;
}
// Uncomment the following line to resolve.
// int mf(int, int) { return 1; }
};
int main() {
C^ pC = gcnew C;
System::Delegate^ pD = gcnew D( pC, &C::mf ); // C3352
}