示例#1
0
文件: GeoHash32.cs 项目: lanicon/Styx
 /// <summary>
 /// Compares two geohashes for equality.
 /// </summary>
 /// <param name="GeoHash32">Another geohash.</param>
 /// <returns>True if both are equal; False otherwise.</returns>
 public Boolean Equals(GeoHash32 GeoHash32)
 {
     return(this.Value.Equals(GeoHash32.Value));
 }
示例#2
0
文件: GeoHash32.cs 项目: lanicon/Styx
 /// <summary>
 /// Compares two geohashes.
 /// </summary>
 /// <param name="GeoHash32">Another geohash.</param>
 public Int32 CompareTo(GeoHash32 GeoHash32)
 {
     return(this.Value.CompareTo(GeoHash32.Value));
 }