Struct’s via Automatic Properties can be tricky
Here’s a bit of code i just got through debugging… public Point Point { get; private set; } public void Offset(Point origin) { Point.Offset(-origin.X, -origin.Y); } Can you tell what’s wrong here? Let’s just say that the Offset won’t take. … Continue reading