public bool Equals(GeographyFullGlobe other)
        {
            bool?nullable = base.BaseEquals(other);

            return(!nullable.HasValue || nullable.GetValueOrDefault());
        }
Beispiel #2
0
 public bool Equals(GeographyFullGlobe other)
 {
     return(this.BaseEquals(other) ?? true);
 }
Beispiel #3
0
 public bool Equals(GeographyFullGlobe other)
 {
     bool? nullable = base.BaseEquals(other);
     return (!nullable.HasValue || nullable.GetValueOrDefault());
 }