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

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