更新:2007 年 11 月
错误消息
“class1”不能从特殊类“class2”派生类不能从下列任何基类中显式继承:
System.Enum
System.ValueType
System.Delegate
System.Array
这些基类被编译器用作隐式基类。例如,System.ValueType 是结构的隐式基类。
下面的示例生成 CS0644:
复制代码 | |
---|---|
// CS0644.cs class MyClass : System.ValueType // CS0644 { } |
更新:2007 年 11 月
类不能从下列任何基类中显式继承:
System.Enum
System.ValueType
System.Delegate
System.Array
这些基类被编译器用作隐式基类。例如,System.ValueType 是结构的隐式基类。
下面的示例生成 CS0644:
复制代码 | |
---|---|
// CS0644.cs class MyClass : System.ValueType // CS0644 { } |