9 public struct LocationWrapper
11 public Location location
;
20 public static void Test (out Location location
)
23 location
.y
= location
.x
;
26 public static void Test (LocationWrapper member
)
28 member
.location
.x
= 0;
29 member
.location
.y
= member
.location
.x
;
32 public static void Test (out LocationWrapper member
)
34 member
.location
.x
= 0;
35 member
.location
.y
= member
.location
.x
;