public override bool Equals(object other) { if (other == null || !(other is CGVector)) { return(false); } CGVector o = (CGVector)other; return(o.dx == dx && o.dy == dy); }
static extern IntPtr NSStringFromCGVector(CGVector vector);
extern static IntPtr NSStringFromCGVector(CGVector vector);