C# 构造函数如何调用父类构造函数或其他构造函数

class C : B
{
    C() : base(5)      // call base constructor B(5)
    {  }

    C(int i) : this()  // call C()
    {  }
原文地址:https://www.cnblogs.com/wene/p/3170406.html