VelocityDB.geohash.WGS84Point.Equals C# (CSharp) Method

Equals() public method

public Equals ( object obj ) : bool
obj object
return bool
    public override bool Equals(object obj)
    {
      if (obj is WGS84Point)
      {
        WGS84Point other = (WGS84Point) obj;
        return m_latitude == other.m_latitude && m_longitude == other.m_longitude;
      }
      return false;
    }