c# – 为什么必须在声明派生类时在接口之前指定基类?
发布时间:2020-12-15 07:44:39 所属栏目:百科 来源:网络整理
导读:public interface ITest{ int ChildCount { get; set; }}public class Test{}public class OrderPool : ITest,Test{ public int ChildCount { get; set; }} 错误说Base类’Test’必须在任何接口之前. 为什么有必要先扩展类然后实现接口? 解决方法 因为 spec
public interface ITest { int ChildCount { get; set; } } public class Test { } public class OrderPool : ITest,Test { public int ChildCount { get; set; } } 错误说Base类’Test’必须在任何接口之前. 解决方法
因为
specification在第17.1.2节中说明了这一点.
(编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |