A
Action
Point is a struct
but I can do both
Point a;
Write(a.X);
Write(a.Y);
and
Point a = new Point(1,1);
Write(a.X);
Write(a.Y);
.....seems confusing!
but I can do both
Point a;
Write(a.X);
Write(a.Y);
and
Point a = new Point(1,1);
Write(a.X);
Write(a.Y);
.....seems confusing!