예제 #1
0
 public static PDR.A CallMethodOfStruct_1()
 {
     PDR.A a = new PDR.A();
     a.SetX(123);
     return(a);
 }
예제 #2
0
 private static PDR.A IncrementX(PDR.A a)
 {
     a.SetX(a.GetX() + 100);
     return(a);
 }