public static void testOne() { Pointa p = new Pointa(); p.x = 5; testc(p); Console.WriteLine(p.x); }
public static void testc(Pointa p) { p.x = 10; }