更新:2007 年 11 月

错误消息

接口列表中的类型“type”不是接口

对于 structinterface,从其他接口而不是其他任何类型继承是可能的。

下面的示例生成 CS0527:

 复制代码
// CS0527.cs
// compile with: /target:library
public struct clx : int {}   // CS0527 int not an interface