public static PDR.A CallMethodOfStruct_1() { PDR.A a = new PDR.A(); a.SetX(123); return(a); }
private static PDR.A IncrementX(PDR.A a) { a.SetX(a.GetX() + 100); return(a); }