Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Cannot forward generic type, 'GenericType<>'
Example
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.