Baca dalam bahasa Inggris

Bagikan melalui


Kesalahan Pengompilasi CS0733

Tidak dapat meneruskan jenis generik, 'GenericType<>'

Contoh

Contoh berikut menghasilkan CS0733. Kompilasi file pertama sebagai pustaka, lalu referensikan file tersebut saat Anda mengompilasi file kedua.

// 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