public bool Equals([CanBeNull] PostgisPoint other)
 {
     if (ReferenceEquals(other, null))
     {
         return(false);
     }
     return(_coord.Equals(other._coord));
 }
Exemple #2
0
 public bool Equals([CanBeNull] PostgisPoint other)
 => !ReferenceEquals(other, null) && _coord.Equals(other._coord);