Exemple #1
0
 /// <summary>
 /// Compares two geohashes for equality.
 /// </summary>
 /// <param name="GeoHash64">Another geohash.</param>
 /// <returns>True if both are equal; False otherwise.</returns>
 public Boolean Equals(GeoHash64 GeoHash64)
 {
     return(this.Value.Equals(GeoHash64.Value));
 }
Exemple #2
0
 /// <summary>
 /// Compares two geohashes.
 /// </summary>
 /// <param name="GeoHash64">Another geohash.</param>
 public Int32 CompareTo(GeoHash64 GeoHash64)
 {
     return(this.Value.CompareTo(GeoHash64.Value));
 }