Przeczytaj w języku angielskim

Udostępnij za pośrednictwem


Błąd kompilatora CS0739

Zduplikowany typ TypeForwardedToAttribute.

Zestaw nie może mieć więcej niż jednego TypeForwardedToAttribute typu zewnętrznego.

Aby poprawić ten błąd

  1. Znajdź i usuń zduplikowany TypeForwardedToAttributeelement .

Przykład

Poniższy kod generuje 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)  
        {  
        }  
    }  
}  

Zobacz też