编译器错误 CS0524
“type”:接口不能声明类型
接口 不能包含用户定义的类型;它应仅包含方法和属性。
下面的示例生成 CS0524:
C#
// CS0524.cs
public interface Clx
{
public class Cly // CS0524, delete user-defined type
{
}
}
“type”:接口不能声明类型
接口 不能包含用户定义的类型;它应仅包含方法和属性。
下面的示例生成 CS0524:
// CS0524.cs
public interface Clx
{
public class Cly // CS0524, delete user-defined type
{
}
}