MapAround.Geometry.Coordinate3D.ExactEquals C# (CSharp) Method

ExactEquals() public method

Gets a value indicating whether this coordinate instance is equal to another. Comparisions performs exactly (used zero tolerance value). Z values are not compared.
public ExactEquals ( ICoordinate p ) : bool
p ICoordinate The MapAround.Geometry.ICoordinate implementor to compare with the current object
return bool
        public bool ExactEquals(ICoordinate p)
        {
            return _x == p.X && _y == p.Y;
        }