更新:2007 年 11 月

错误消息

“type”:接口不能声明类型

接口不能包含用户定义的类型,只能包含方法和属性。

示例

下面的示例生成 CS0524:

 复制代码
// CS0524.cs
public interface Clx
{
    public class Cly   // CS0524, delete user-defined type
    {
    }
}