编译器错误 CS0739
“type name”重复 TypeForwardedToAttribute。
程序集不可具有超过一个到外部类型的 TypeForwardedToAttribute 。
- 找到并删除重复 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)
{
}
}
}