Esempio n. 1
0
 public bool Equals(GeometryLineString other)
 {
     bool? nullable = base.BaseEquals(other);
     if (!nullable.HasValue)
     {
         return this.Points.SequenceEqual<GeometryPoint>(other.Points);
     }
     return nullable.GetValueOrDefault();
 }
Esempio n. 2
0
        public bool Equals(GeometryLineString other)
        {
            bool?nullable = base.BaseEquals(other);

            if (!nullable.HasValue)
            {
                return(this.Points.SequenceEqual <GeometryPoint>(other.Points));
            }
            return(nullable.GetValueOrDefault());
        }
Esempio n. 3
0
 public bool Equals(GeometryLineString other)
 {
     return(this.BaseEquals(other) ?? this.Points.SequenceEqual(other.Points));
 }
 public bool Equals(GeometryLineString other)
 {
     return this.BaseEquals(other) ?? this.Points.SequenceEqual(other.Points);
 }