3435363738394041
public NSSize() { this(0, 0); } public NSSize(double width, double height) { this.width = new CGFloat(width); this.height = new CGFloat(height); }
3738394041424344
public NSPoint() { this(0, 0); } public NSPoint(double x, double y) { this.x = new CGFloat(x); this.y = new CGFloat(y); }
3233343536373839