Erro do compilador C3224
'type': nenhuma classe genérica sobrecarregada recebe 'number' argumentos de tipo genérico
O compilador não conseguiu encontrar uma sobrecarga apropriada.
O seguinte exemplo gera o erro C3224:
// C3224.cs
// compile with: /target:library
public class C<T> {}
public class C<T,U> {}
Assim,
// 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
}