다음을 통해 공유


컴파일러 오류 C3224

'type': 'number'개의 제네릭 형식 인수를 사용하는 오버로드된 제네릭 클래스가 없습니다.

컴파일러가 적절한 오버로드를 찾지 못했습니다.

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

// C3224.cs
// compile with: /target:library
public class C<T> {}
public class C<T,U> {}

그리고

// C3224b.cpp
// compile with: /clr
#using "C3224.dll"
int main() {
   C<int,int,int>^ c = gcnew C<int,int,int>();   // C3224
   C<int,int>^ c2 = gcnew C<int,int>();   // OK
}