Compiler Error CS0729
Type 'type' is defined in this assembly, but a type forwarder is specified for it
You cannot use a type forwarder for a type defined in the same assembly.
The following sample generates CS0729.
C#
// CS0729.cs
// compile with: /target:library
using System.Runtime.CompilerServices;
[assembly:TypeForwardedTo(typeof(TestClass))] // CS0729
class TestClass {}
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: