public bool Equals(Area other) { return(name == other.name && priority == other.priority && areaTypeFlags == other.areaTypeFlags && closedPolygon.Equals(other.closedPolygon) && allowIntersectionFlags == other.allowIntersectionFlags && surfaceTypeFlags == other.surfaceTypeFlags && surfaceAttributeFlags == other.surfaceAttributeFlags && levelOffset == other.levelOffset && lower.Equals(other.lower) && upper.Equals(other.upper)); }
public bool Equals(Area other) { return(name == other.name && priority == other.priority && areaTypeFlags == other.areaTypeFlags && pointList.Equals(other.pointList) && intersectionObjectType == other.intersectionObjectType && allowIntersectionTypes == other.allowIntersectionTypes && surfaceTypeFlags == other.surfaceTypeFlags && surfaceAttributeFlags == other.surfaceAttributeFlags && deprecatedLevelOffset == other.deprecatedLevelOffset && boundingBox3D == other.boundingBox3D); }