編譯器錯誤 CS0739
'type name' 與 TypeForwardedToAttribute 重複。
組件的外部類型不能有多個 TypeForwardedToAttribute 。
- 請找到並移除重複的 TypeForwardedToAttribute。
下列程式碼會產生 CS0739:
// 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)
{
}
}
}