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<>'
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
.NET feedback
.NET is an open source project. Select a link to provide feedback: