영어로 읽기

다음을 통해 공유


컴파일러 오류 CS0730

'type' 형식은 'type'의 중첩 형식이므로 전달할 수 없습니다.

이 오류는 중첩된 클래스를 전달하려고 할 때 발생합니다.

예시

다음 샘플에서는 CS0730을 생성합니다. 이는 두 개의 원본 파일로 구성됩니다. 먼저, CS0730a.cs라이브러리 파일을 컴파일하고, 해당 라이브러리 파일을 참조하는 CS0730.cs 파일을 컴파일합니다.

// CS0730a.cs  
// compile with: /t:library  
public class Outer  
{  
   public class Nested {}  
}  
// CS0730.cs  
// compile with: /t:library /r:CS0730a.dll  
using System.Runtime.CompilerServices;  
  
[assembly:TypeForwardedToAttribute(typeof(Outer.Nested))]   // CS0730  
  
[assembly:TypeForwardedToAttribute(typeof(Outer))]   // OK