示例#1
0
 public Point69(int y1)
 {
     this = new Point69();
     y    = y1;
 }
示例#2
0
 public Point69(int y1)
 {
     this = new Point69();
     y = y1;
 }
示例#3
0
文件: N069.cs 项目: wushian/Bridge
        public static void ThisKeywordInStructConstructorWorks()
        {
            var p = new Point69(10);

            Assert.AreEqual(10, p.y);
        }