c# – 为什么必须在声明派生类时在接口之前指定基类?

前端之家收集整理的这篇文章主要介绍了c# – 为什么必须在声明派生类时在接口之前指定基类?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
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节中说明了这一点.
原文链接:https://www.f2er.com/csharp/99363.html

猜你在找的C#相关文章