Leer en inglés

Compartir a través de


Error del compilador CS0733

No se puede reenviar el tipo genérico, 'GenericType<>'

Ejemplo

El siguiente ejemplo genera el error CS0733. Compile el primer archivo como una biblioteca y, después, haga referencia a este cuando compile el segundo archivo.

C#
// CS0733a.cs  
// compile with: /target:library  
public class GenericType<T>
{  
}  
C#
// CS0733.cs  
// compile with: /target:library /r:CS0733a.dll  
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(GenericType<int>))]   // CS0733