Esempio n. 1
0
 public bool Equals(GeographyPoint other)
 {
     bool? nullable = base.BaseEquals(other);
     if (nullable.HasValue)
     {
         return nullable.GetValueOrDefault();
     }
     return ((((this.Latitude == other.Latitude) && (this.Longitude == other.Longitude)) && (this.Z == other.Z)) && (this.M == other.M));
 }
Esempio n. 2
0
 public bool Equals(GeographyPoint other)
 {
     return this.BaseEquals(other) ?? this.Latitude == other.Latitude && this.Longitude == other.Longitude && this.Z == other.Z && this.M == other.M;
 }