public bool Equals(Match other) { if (ReferenceEquals(null, other)) return false; if (ReferenceEquals(this, other)) return true; return other.Device.EqualsIgnoreCase(Device) && Equals(other.ShapeId, ShapeId) && Equals(other.Points, Points); }
public MatchCollection SetInclusion(Match match, bool include) { InclusionMap[match] = include; return this; }