共用方式為


編譯器錯誤 CS0699

更新:2007 年 11 月

錯誤訊息

'generic' 沒有定義型別參數 'identifier'

在泛型定義中使用的型別參數,無法在該泛用的型別參數宣告清單中找到。如果型別參數使用的名稱不一致,則可能會發生這種錯誤。

下列範例會產生 CS0699:

// CS0699.cs
class C<T> where U : I   // CS0699 – U is not a valid type parameter
{
}