예제 #1
0
파일: Demo.cs 프로젝트: sergvic/oop2-sharp
        public static void testOne()
        {
            Pointa p = new Pointa();

            p.x = 5;
            testc(p);
            Console.WriteLine(p.x);
        }
예제 #2
0
파일: Demo.cs 프로젝트: sergvic/oop2-sharp
 public static void testc(Pointa p)
 {
     p.x = 10;
 }