public bool Equals(PhysicalAddress other) { return(Streets.ListsAreEqual(other.Streets) && string.Equals(City, other.City) && string.Equals(State, other.State) && string.Equals(PostalCode, other.PostalCode) && string.Equals(Country, other.Country)); }