英語で読む

次の方法で共有


コンパイラ エラー CS0739

'type name' が TypeForwardedToAttribute と重複しています。

アセンブリには、外部型に 1 つの TypeForwardedToAttribute のみを指定できます。

このエラーを解決するには

  1. 重複する 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)  
        {  
        }  
    }  
}  

関連項目