使用英语阅读

通过


编译器错误 CS0527

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

结构接口 可以继承另一个接口,而无法继承任何其他类型。

以下示例生成 CS0527:

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