コード例 #1
0
ファイル: GeoHashBound.cs プロジェクト: sps014/GeoQuery
 public override int GetHashCode() =>
 Southwest.GetHashCode() ^ Northeast.GetHashCode();
コード例 #2
0
ファイル: GeoHashBound.cs プロジェクト: sps014/GeoQuery
 public bool Equals(GeoHashBound other) =>
 Southwest.Equals(other.Southwest) && Northeast.Equals(other.Northeast);