更新:2007 年 11 月

错误消息

约束不能是特殊类“identifier”

下面的类型不能用作约束:System.ObjectSystem.ArraySystem.DelegateSystem.EnumSystem.ValueType

示例

下面的示例生成 CS0702:

 复制代码
// CS0702.cs
class C<T> where T : System.Array  // CS0702
{
}