共用方式為


編譯器錯誤 CS0306

更新:2007 年 11 月

錯誤訊息

型別 'type' 不能用來做為型別引數

不允許將型別做為型別參數使用。可能是因為型別為指標型別 (Pointer Type)。

下列範例會產生 CS0306:

// CS0306.cs
class C<T>
{
}

class M
{
    // CS0306 – int* not allowed as a type parameter
     C<int*> f;
}