更新:2007 年 11 月

错误消息

类型参数“type parameter”的重复约束“constraint”

泛型声明的两个约束完全相同。若要消除此错误,请移除重复的约束。

下面的示例生成 CS0405:

 复制代码
// CS0405.cs
interface I
{
}

class C<T> where T : I, I  // CS0405.cs
{
}