Ejemplo n.º 1
0
 public Point69(int y1)
 {
     this = new Point69();
     y    = y1;
 }
Ejemplo n.º 2
0
 public Point69(int y1)
 {
     this = new Point69();
     y = y1;
 }
Ejemplo n.º 3
0
        public static void ThisKeywordInStructConstructorWorks()
        {
            var p = new Point69(10);

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