Compiler Error CS0733
Cannot forward generic type, 'GenericType<>'
The following example generates CS0733. Compile the first file as a library, and then reference it when you compile the second file.
// CS0733a.cs
// compile with: /target:library
public class GenericType<T>
{
}
// CS0733.cs
// compile with: /target:library /r:CS0733a.dll
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(GenericType<int>))] // CS0733
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
.NET feedback
.NET is an open source project. Select a link to provide feedback: