Beispiel #1
0
        public static void ThisKeywordInStructConstructorWorks()
        {
            var p = new Point69(10);

            Assert.AreEqual(10, p.y);
        }
Beispiel #2
0
 public Point69(int y1)
 {
     this = new Point69();
     y    = y1;
 }