c# tcbs之构造函数调用构造函数示例

public class testref
    {
        public int x;
        public int y;
        public int z;
        public testref()
        {
            x = 3;
            y = 4;
        }
        public testref(int c):this()
        {
            z = c;
        }
    }
请使用浏览器的分享功能分享到微信等