使用英语阅读

通过


编译器错误 CS0739

“type name”重复 TypeForwardedToAttribute。

程序集不可具有超过一个到外部类型的 TypeForwardedToAttribute

更正此错误

  1. 找到并删除重复 TypeForwardedToAttribute

示例

以下代码生成 CS0739:

C#
// CS0739.cs  
// CS0739  
// Assume that a class Test is declared in a separate dll  
// with a namespace that is named cs739dll.  
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(cs739dll.Test))]  
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(cs739dll.Test))]  
namespace cs0739  
{  
    class Program  
    {  
        static void Main(string[] args)  
        {  
        }  
    }  
}  

另请参阅