Ejemplo n.º 1
0
 protected bool Equals(PeriodList other) => string.Equals(TzId, other.TzId, StringComparison.OrdinalIgnoreCase) &&
 CollectionHelpers.Equals(Periods, other.Periods);
Ejemplo n.º 2
0
 protected bool Equals(PeriodList other)
 {
     return(string.Equals(TzId, other.TzId) && CollectionHelpers.Equals(Periods, other.Periods));
 }