/// <summary> /// Returns TRUE when this geometry has exactly same type, properties, and /// coordinates as the other geometry. /// </summary> public override bool Equals(object other) { if (other == null) { return(false); } if (other == this) { return(true); } if (((Geometry)other).GetType() != GetType()) { return(false); } return(m_impl.Equals(((com.epl.geometry.MultiPoint)other)._getImpl())); }