已不再支援此瀏覽器。
請升級至 Microsoft Edge,以利用最新功能、安全性更新和技術支援。
更新:2007 年 11 月
型別 'type' 不能用來做為型別引數
不允許將型別做為型別參數使用。可能是因為型別為指標型別 (Pointer Type)。
下列範例會產生 CS0306:
// CS0306.cs class C<T> { } class M { // CS0306 – int* not allowed as a type parameter C<int*> f; }