영어로 읽기

다음을 통해 공유


컴파일러 오류 CS0733

제네릭 형식 'GenericType<>'을 전달할 수 없습니다.

예시

다음 예제에서는 CS0733을 생성합니다. 첫 번째 파일을 라이브러리로 컴파일한 다음 두 번째 파일을 컴파일할 때 참조합니다.

// CS0733a.cs  
// compile with: /target:library  
public class GenericType<T>
{  
}  
// CS0733.cs  
// compile with: /target:library /r:CS0733a.dll  
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(GenericType<int>))]   // CS0733