英語で読む

次の方法で共有


コンパイラ エラー CS0733

ジェネリック型 'GenericType <>' を転送することはできません

次の例では CS0733 が生成されます。 最初のファイルをライブラリとしてコンパイルし、2 番目のファイルをコンパイルするときにそれを参照します。

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