Example #1
0
 public bool Equals(GeographyCollection other)
 {
     bool? nullable = base.BaseEquals(other);
     if (!nullable.HasValue)
     {
         return this.Geographies.SequenceEqual<Geography>(other.Geographies);
     }
     return nullable.GetValueOrDefault();
 }
        public bool Equals(GeographyCollection other)
        {
            bool?nullable = base.BaseEquals(other);

            if (!nullable.HasValue)
            {
                return(this.Geographies.SequenceEqual <Geography>(other.Geographies));
            }
            return(nullable.GetValueOrDefault());
        }
 public bool Equals(GeographyCollection other)
 {
     return this.BaseEquals(other) ?? this.Geographies.SequenceEqual(other.Geographies);
 }
Example #4
0
 public bool Equals(GeographyCollection other)
 {
     return(this.BaseEquals(other) ?? this.Geographies.SequenceEqual(other.Geographies));
 }