Číst v angličtině

Sdílet prostřednictvím


Chyba kompilátoru CS0739

'název typu' duplicitní TypeForwardedToAttribute.

Sestavení nemůže mít více než jeden TypeForwardedToAttribute externí typ.

Oprava této chyby

  1. Vyhledejte a odeberte duplicity TypeForwardedToAttribute.

Příklad

Následující kód vygeneruje 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)  
        {  
        }  
    }  
}  

Viz také