영어로 읽기

다음을 통해 공유


컴파일러 오류 CS0739

'type name'에 TypeForwardedToAttribute가 중복되었습니다.

어셈블리에는 외부 형식에 대해 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)  
        {  
        }  
    }  
}  

참고 항목